Type Definition volatile::ReadWrite

source ·
pub type ReadWrite<T> = Volatile<T>;
Expand description

A volatile wrapper which allows both read and write operations; functionally equivalent to the Volatile type, as it is a type alias for it.

The size of this struct is the same as the contained type.