unsafe fn atomic_load<T>(src: *mut T) -> Twhere T: Copy,
Atomically reads data from src.
src
This operation uses the Acquire ordering. If possible, an atomic instructions is used, and a global lock otherwise.
Acquire