Type Alias RwLock

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

Reader-writer lock over an atomic variable, based on the nginx rwlock implementation.

Aliased Typeยง

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