pub trait AtomicallySized: Sized {
type AtomicVersion: Atomic<Self>;
}Expand description
Trait describing types that are atomically sized, i.e. it’s possible to perform atomic operations on them.
Required Associated Types§
type AtomicVersion: Atomic<Self>
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.