Trait AtBool

Source
pub trait AtBool {
    // Required methods
    fn l(&self) -> bool;
    fn s(&self, val: bool);
}

Required Methods§

Source

fn l(&self) -> bool

load with Ordering::Relaxed

Source

fn s(&self, val: bool)

store with Ordering::Relaxed

Implementations on Foreign Types§

Source§

impl AtBool for AtomicBool

Source§

fn l(&self) -> bool

Source§

fn s(&self, val: bool)

Implementors§