1.0.0[][src]Struct std::sync::MutexGuard

#[must_use = "if unused the Mutex will immediately unlock"]
pub struct MutexGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }

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<'a, T: ?Sized + Display> Display for MutexGuard<'a, T>
1.20.0
[src]

Formats the value using the given formatter. Read more

impl<'a, T: ?Sized + Debug> Debug for MutexGuard<'a, T>
1.16.0
[src]

Formats the value using the given formatter. Read more

impl<'mutex, T: ?Sized> Deref for MutexGuard<'mutex, T>
[src]

The resulting type after dereferencing.

Important traits for &'a mut I

Dereferences the value.

impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]

Important traits for &'a mut I

Mutably dereferences the value.

impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
[src]

Executes the destructor for this type. Read more

impl<'a, T: ?Sized + Sync> Sync for MutexGuard<'a, T>
1.19.0
[src]

impl<'a, T: ?Sized> !Send for MutexGuard<'a, T>
[src]

Blanket Implementations

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from #33417)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from #33417)

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Important traits for &'a mut I

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Important traits for &'a mut I

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id #27745)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

Converts the given value to a String. Read more