RwLock

Type Alias RwLock 

Source
pub type RwLock<T> = RwLock<Spinlock, T>;
Expand description

An implementation of a reader-writer lock, based on a spinlock primitive, no-std compatible

See lock_api::RwLock for usage.

Aliased Typeยง

pub struct RwLock<T> { /* private fields */ }