[][src]Trait atomic_types::AtomicallySized

pub trait AtomicallySized: Sized {
    type AtomicVersion: Atomic<Self>;
}

Trait describing types that are atomically sized, i.e. it's possible to perform atomic operations on them.

Associated Types

type AtomicVersion: Atomic<Self>

Loading content...

Implementors

impl AtomicallySized for bool[src]

impl AtomicallySized for i8[src]

impl AtomicallySized for i16[src]

impl AtomicallySized for i32[src]

impl AtomicallySized for i64[src]

impl AtomicallySized for isize[src]

impl AtomicallySized for u8[src]

impl AtomicallySized for u16[src]

impl AtomicallySized for u32[src]

impl AtomicallySized for u64[src]

impl AtomicallySized for usize[src]

impl<T> AtomicallySized for *mut T[src]

Loading content...