pub trait AtomicInt: AtomicNum + AtomicBitOps { }
Expand description

A marker trait representing atomic types that support numerical and ordering operations.

Implementors§

source§

impl<T> AtomicInt for Twhere T: AtomicNum + AtomicBitOps,