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

The AtomicInteger that atomic operations on Self are based on.

Implementations on Foreign Types

Implementors