Struct concurrency_traits::CustomMutexGuard[][src]

pub struct CustomMutexGuard<'a, T, M> where
    M: RawTryMutex
{ /* fields omitted */ }

A guard for a CustomMutex

Trait Implementations

impl<'a, T: Debug, M: Debug> Debug for CustomMutexGuard<'a, T, M> where
    M: RawTryMutex
[src]

impl<'a, T, M> Deref for CustomMutexGuard<'a, T, M> where
    M: RawTryMutex
[src]

type Target = T

The resulting type after dereferencing.

impl<'a, T, M> DerefMut for CustomMutexGuard<'a, T, M> where
    M: RawTryMutex
[src]

impl<'a, T, M> Drop for CustomMutexGuard<'a, T, M> where
    M: RawTryMutex
[src]

Auto Trait Implementations

impl<'a, T, M> !RefUnwindSafe for CustomMutexGuard<'a, T, M>

impl<'a, T, M> Send for CustomMutexGuard<'a, T, M> where
    M: Sync,
    T: Send

impl<'a, T, M> Sync for CustomMutexGuard<'a, T, M> where
    M: Sync,
    T: Send

impl<'a, T, M> Unpin for CustomMutexGuard<'a, T, M>

impl<'a, T, M> !UnwindSafe for CustomMutexGuard<'a, T, M>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.