Struct tokio::sync::MutexGuard [−][src]
pub struct MutexGuard<'a, T: ?Sized> { /* fields omitted */ }
A handle to a held Mutex
.
As long as you have this guard, you have exclusive access to the underlying
T
. The guard internally borrows the Mutex
, so the mutex will not be
dropped while a guard exists.
The lock is automatically released whenever the guard is dropped, at which
point lock
will succeed yet again.
Trait Implementations
impl<T: ?Sized + Debug> Debug for MutexGuard<'_, T>
[src]
impl<T: ?Sized + Debug> Debug for MutexGuard<'_, T>
[src]impl<T: ?Sized> Deref for MutexGuard<'_, T>
[src]
impl<T: ?Sized> Deref for MutexGuard<'_, T>
[src]impl<T: ?Sized> DerefMut for MutexGuard<'_, T>
[src]
impl<T: ?Sized> DerefMut for MutexGuard<'_, T>
[src]impl<T: ?Sized + Display> Display for MutexGuard<'_, T>
[src]
impl<T: ?Sized + Display> Display for MutexGuard<'_, T>
[src]impl<T: ?Sized> Sync for MutexGuard<'_, T> where
T: Send + Sync,
[src]
T: Send + Sync,
Auto Trait Implementations
impl<'a, T> !RefUnwindSafe for MutexGuard<'a, T>
impl<'a, T: ?Sized> Send for MutexGuard<'a, T> where
T: Send,
T: Send,