pub trait AsyncMutexGuard<'mux, F: SyslogFormatter, D: AsyncSyslogDestination, DS: AsyncSyslogApi<F, D>> {
// 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.