[][src]Struct futures_intrusive::sync::GenericMutexGuard

pub struct GenericMutexGuard<'a, MutexType: RawMutex, T: 'a> { /* fields omitted */ }

An RAII guard returned by the lock and try_lock methods. When this structure is dropped (falls out of scope), the lock will be unlocked.

Trait Implementations

impl<'_, MutexType: RawMutex, T> Drop for GenericMutexGuard<'_, MutexType, T>[src]

impl<'_, MutexType: RawMutex, T: Debug> Debug for GenericMutexGuard<'_, MutexType, T>[src]

impl<'_, MutexType: RawMutex, T> Deref for GenericMutexGuard<'_, MutexType, T>[src]

type Target = T

The resulting type after dereferencing.

impl<'_, MutexType: RawMutex, T> DerefMut for GenericMutexGuard<'_, MutexType, T>[src]

Auto Trait Implementations

impl<'a, MutexType, T> Send for GenericMutexGuard<'a, MutexType, T> where
    MutexType: Sync,
    T: Send

impl<'a, MutexType, T> Sync for GenericMutexGuard<'a, MutexType, T> where
    MutexType: Sync,
    T: Send

impl<'a, MutexType, T> Unpin for GenericMutexGuard<'a, MutexType, T>

impl<'a, MutexType, T> !UnwindSafe for GenericMutexGuard<'a, MutexType, T>

impl<'a, MutexType, T> !RefUnwindSafe for GenericMutexGuard<'a, MutexType, T>

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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