Trait vm_memory::bytes::AtomicAccess [−][src]
pub trait AtomicAccess: ByteValued + From<<Self::A as AtomicInteger>::V> + Into<<Self::A as AtomicInteger>::V> { type A: AtomicInteger; }
Expand description
A trait used to identify types which can be accessed atomically by proxy.
Associated Types
type A: AtomicInteger
type A: AtomicInteger
The AtomicInteger
that atomic operations on Self
are based on.