pub trait RawMutex {
    fn lock(&self);
    fn try_lock(&self) -> bool;
    unsafe fn unlock(&self);
}

Required Methods

Implementors