pub type RwLock<T> = RwLock<RawRwLock, T>;
Read-write lock. Use this if you usually only need to read the value.
pub struct RwLock<T> { /* private fields */ }