Struct async_mutex::MutexGuard [−][src]
pub struct MutexGuard<'a, T: ?Sized>(_);
A guard that releases the mutex when dropped.
Implementations
impl<'a, T: ?Sized> MutexGuard<'a, T>
[src]
impl<'a, T: ?Sized> MutexGuard<'a, T>
[src]pub fn source(guard: &MutexGuard<'a, T>) -> &'a Mutex<T>
[src]
Returns a reference to the mutex a guard came from.
Examples
use async_mutex::{Mutex, MutexGuard}; let mutex = Mutex::new(10i32); let guard = mutex.lock().await; dbg!(MutexGuard::source(&guard));
Trait Implementations
impl<T: Debug + ?Sized> Debug for MutexGuard<'_, T>
[src]
impl<T: Debug + ?Sized> Debug for MutexGuard<'_, T>
[src]impl<T: ?Sized> Deref for MutexGuard<'_, T>
[src]
impl<T: ?Sized> Deref for MutexGuard<'_, T>
[src]impl<T: Display + ?Sized> Display for MutexGuard<'_, T>
[src]
impl<T: Display + ?Sized> Display for MutexGuard<'_, T>
[src]