pub trait AtomicValue {
    type Inner;

    fn get(&self) -> Self::Inner;
    fn set(&self, value: Self::Inner);
}
Expand description

Trait of values that can be loaded / stored with relaxed operations.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors