/// A synchronous mutual exclusion primitive useful for protecting shared data pub type Mutex = parking_lot::Mutex; /// A synchronous reader-writer lock pub type RwLock = parking_lot::RwLock; /// A synchronization primitive which can be used to run a one-time initialization. pub type Once = parking_lot::Once;