[][src]Struct parking_lot::RawFairMutex

pub struct RawFairMutex(_);

Raw fair mutex type backed by the parking lot.

Trait Implementations

impl RawMutex for RawFairMutex[src]

type GuardMarker = <RawMutex as RawMutex>::GuardMarker

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

impl RawMutexFair for RawFairMutex[src]

impl RawMutexTimed for RawFairMutex[src]

type Duration = <RawMutex as RawMutexTimed>::Duration

Duration type used for try_lock_for.

type Instant = <RawMutex as RawMutexTimed>::Instant

Instant type used for try_lock_until.

Auto Trait Implementations

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.