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

Required Methods§

Implementations on Foreign Types§

Implementors§