pub trait Mutex: Sync + Send {
    fn lock(&self);
fn unlock(&self); }

Required methods

Implementors