Method lrs::atomic::AtomicU64::store_unordered

Stores a new value in the atomic integer without ordering guarantees.

Syntax

impl AtomicU64 {
    fn store_unordered(&self, val: u64) -> ()
}

Arguments

NameDescription
val

The value to be stored in the atomic integer.