Struct cryo::CryoMutReadGuard[][src]

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

The read lock guard type of CryoMut.

Trait Implementations

impl<T: ?Sized, Lock: Lock> Clone for CryoMutReadGuard<T, Lock>[src]

impl<T: ?Sized, Lock: Lock> CloneStableDeref for CryoMutReadGuard<T, Lock>[src]

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

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

type Target = T

The resulting type after dereferencing.

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

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

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

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

Auto Trait Implementations

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

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

impl<T: ?Sized, Lock> UnwindSafe for CryoMutReadGuard<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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.