pub trait HasAtomicInt: HasAtomic {
    type AtomicInt: AtomicInt<Primitive = Self>;
}
Expand description

A marker trait representing types that have an associated atomic integer type.

Required Associated Types§

source

type AtomicInt: AtomicInt<Primitive = Self>

Implementors§

source§

impl<T: HasAtomic> HasAtomicInt for Twhere T::Atomic: AtomicInt<Primitive = T>,