pub trait AtomicData: Clone + Eq + Sized {
    type AtomicWrapper: AtomicLoadStore<Content = Self>;
}
Expand description

Requirements on the data held by a RaceCell

Required Associated Types

Atomic wrapper type for this data implementing relaxed atomic load/store

Implementations on Foreign Types

Implementors