pub trait AtomicNumOps<T = <Self as Atomic>::Primitive>: Atomic + AtomicAdd<T> + AtomicSub<T> { }

Implementors§

source§

impl<T, U> AtomicNumOps<T> for Uwhere
    U: Atomic + AtomicAdd<T> + AtomicSub<T>,