pub trait AsyncMutexGuard<'mux, DS: Sized> {
// Required methods
fn guard(&self) -> &DS;
fn guard_mut(&mut self) -> &mut DS;
}
Expand description
A trait which generalize the mutex guarding emited by the mutex from various async executors.