pub trait Atomic<N> {
    fn inc(&self) -> N;
    fn inc_by(&self, v: N) -> N;
    fn get(&self) -> N;
}

Required Methods

Implementations on Foreign Types

Implementors