pub trait PrimitiveAtomicSigned: PrimitiveAtomicInteger { }Expand description
Marker trait for primitive atomic signed integer types.
Implemented by AtomicI8, AtomicI16, AtomicI32,
AtomicIsize, and, on targets with 64-bit atomics, AtomicI64.
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 PrimitiveAtomicSigned for AtomicI8
impl PrimitiveAtomicSigned for AtomicI16
impl PrimitiveAtomicSigned for AtomicI32
impl PrimitiveAtomicSigned for AtomicI64
Available on
target_has_atomic=64 only.