pub type RwLock<T> = RwLock<Spinlock, T>;
An implementation of a reader-writer lock, based on a spinlock primitive, no-std compatible
See lock_api::RwLock for usage.
pub struct RwLock<T> { /* private fields */ }