Struct bitflags::__core::sync::MutexGuard [] [src]

#[must_use]
pub struct MutexGuard<'a, T> where T: 'a + ?Sized {
    // some fields omitted
}
1.0.0

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 access through this guard via its Deref and DerefMut implementations

Trait Implementations

impl<'a, T> !Send for MutexGuard<'a, T> where T: ?Sized

impl<'mutex, T> Deref for MutexGuard<'mutex, T> where T: ?Sized

type Target = T

fn deref(&self) -> &T

impl<'mutex, T> DerefMut for MutexGuard<'mutex, T> where T: ?Sized

fn deref_mut(&mut self) -> &mut T

impl<'a, T> Drop for MutexGuard<'a, T> where T: ?Sized

fn drop(&mut self)