Function core::intrinsics::atomic_load_unordered
source · pub unsafe extern "rust-intrinsic" fn atomic_load_unordered<T: Copy>(
src: *const T
) -> 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 src.read()
,
i.e., it performs a non-atomic read.