pub trait AtomicBitOr<T = <Self as Atomic>::Primitive>: Atomic {
    fn fetch_or(&self, val: T, order: Ordering) -> Self::Primitive;
}

Required Methods

Implementations on Foreign Types

Implementors