Trait vm_memory::bytes::AtomicAccess
source · 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.
Required Associated Types§
sourcetype A: AtomicInteger
type A: AtomicInteger
The AtomicInteger
that atomic operations on Self
are based on.
Object Safety§
This trait is not object safe.