Struct std::sync::MutexGuard
1.0.0 · source · [−]pub struct MutexGuard<'a, T: ?Sized + 'a> { /* private fields */ }Expand description
An RAII implementation of a “scoped lock” of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
The data protected by the mutex can be accessed through this guard via its
Deref and DerefMut implementations.
This structure is created by the lock and try_lock methods on
Mutex.
Trait Implementations
impl<T: ?Sized + Debug> Debug for MutexGuard<'_, T>
1.16.0 · source
impl<T: ?Sized + Debug> Debug for MutexGuard<'_, T>
1.16.0 · sourceimpl<T: ?Sized> Deref for MutexGuard<'_, T>
source
impl<T: ?Sized> Deref for MutexGuard<'_, T>
sourceimpl<T: ?Sized> DerefMut for MutexGuard<'_, T>
source
impl<T: ?Sized> DerefMut for MutexGuard<'_, T>
sourceimpl<T: ?Sized + Display> Display for MutexGuard<'_, T>
1.20.0 · source
impl<T: ?Sized + Display> Display for MutexGuard<'_, T>
1.20.0 · sourceimpl<T: ?Sized> Drop for MutexGuard<'_, T>
source
impl<T: ?Sized> Drop for MutexGuard<'_, T>
sourceimpl<T: ?Sized> !Send for MutexGuard<'_, T>
sourceimpl<T: ?Sized + Sync> Sync for MutexGuard<'_, T>
1.19.0 · sourceAuto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for MutexGuard<'a, T>
impl<'a, T: ?Sized> Unpin for MutexGuard<'a, T>
impl<'a, T: ?Sized> UnwindSafe for MutexGuard<'a, T>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
source
impl<T> BorrowMut<T> for T where
T: ?Sized,
sourcefn borrow_mut(&mut self) -> &mut T
const: unstable · source
fn borrow_mut(&mut self) -> &mut T
const: unstable · sourceMutably borrows from an owned value. Read more