Struct async_std::sync::MutexGuard
source · pub struct MutexGuard<'a, T>(_)
where
T: ?Sized;
Expand description
A guard that releases the mutex when dropped.
Implementations§
source§impl<'a, T> MutexGuard<'a, T>where
T: ?Sized,
impl<'a, T> MutexGuard<'a, T>where
T: ?Sized,
sourcepub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
pub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
Returns a reference to the mutex a guard came from.
Examples
use async_lock::{Mutex, MutexGuard};
let mutex = Mutex::new(10i32);
let guard = mutex.lock().await;
dbg!(MutexGuard::source(&guard));