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

Required Methods

Implementations on Foreign Types

Implementors