pub trait PrimitiveAtomicUnsigned: PrimitiveAtomicInteger { }Expand description
Marker trait for primitive atomic unsigned integer types.
Implemented by AtomicU8, AtomicU16, AtomicU32,
AtomicUsize, and, on targets with 64-bit atomics, AtomicU64.
This trait is sealed to prevent downstream implementations.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
impl PrimitiveAtomicUnsigned for AtomicU8
impl PrimitiveAtomicUnsigned for AtomicU16
impl PrimitiveAtomicUnsigned for AtomicU32
impl PrimitiveAtomicUnsigned for AtomicU64
Available on
target_has_atomic=64 only.