Struct cryo::CryoMutWriteGuard[][src]

pub struct CryoMutWriteGuard<T: ?Sized, Lock: Lock> { /* fields omitted */ }

The write lock guard type of CryoMut.

Trait Implementations

impl<T: ?Sized + Debug, Lock: Lock> Debug for CryoMutWriteGuard<T, Lock>[src]

impl<T: ?Sized, Lock: Lock> Deref for CryoMutWriteGuard<T, Lock>[src]

type Target = T

The resulting type after dereferencing.

impl<T: ?Sized, Lock: Lock> DerefMut for CryoMutWriteGuard<T, Lock>[src]

impl<T: ?Sized, Lock: Lock> Drop for CryoMutWriteGuard<T, Lock>[src]

impl<T: ?Sized + Send, Lock: Lock> Send for CryoMutWriteGuard<T, Lock> where
    Lock::UnlockMarker: Send
[src]

impl<T: ?Sized, Lock: Lock> StableDeref for CryoMutWriteGuard<T, Lock>[src]

Auto Trait Implementations

impl<T: ?Sized, Lock> RefUnwindSafe for CryoMutWriteGuard<T, Lock> where
    Lock: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, Lock> !Sync for CryoMutWriteGuard<T, Lock>

impl<T: ?Sized, Lock> Unpin for CryoMutWriteGuard<T, Lock>

impl<T: ?Sized, Lock> UnwindSafe for CryoMutWriteGuard<T, Lock> where
    Lock: RefUnwindSafe,
    T: RefUnwindSafe

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.