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