pub unsafe extern "rust-intrinsic" fn atomic_store_unordered<T: Copy>(
    dst: *mut T,
    val: T
)
🔬This is a nightly-only experimental API. (core_intrinsics)
Expand description

Do NOT use this intrinsic; “unordered” operations do not exist in our memory model! In terms of the Rust Abstract Machine, this operation is equivalent to dst.write(val), i.e., it performs a non-atomic write.