[][src]Struct future_parking_lot::mutex::FutureRawMutex

pub struct FutureRawMutex<R> where
    R: RawMutex
{ /* fields omitted */ }

RawMutex implementor that collects Wakers to wake them up when unlocked

Trait Implementations

impl<R> Drop for FutureRawMutex<R> where
    R: RawMutex
[src]

impl<R> RawMutex for FutureRawMutex<R> where
    R: RawMutex
[src]

type GuardMarker = R::GuardMarker

Marker type which determines whether a lock guard should be Send. Use one of the GuardSend or GuardNoSend helper types here. Read more

Auto Trait Implementations

impl<R> Send for FutureRawMutex<R> where
    R: Send

impl<R> Sync for FutureRawMutex<R> where
    R: Sync

impl<R> Unpin for FutureRawMutex<R> where
    R: Unpin

impl<R> UnwindSafe for FutureRawMutex<R> where
    R: UnwindSafe

impl<R> RefUnwindSafe for FutureRawMutex<R> where
    R: RefUnwindSafe

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]