[][src]Struct parking_lot::RawRwLock

pub struct RawRwLock { /* fields omitted */ }

Raw reader-writer lock type backed by the parking lot.

Trait Implementations

impl RawRwLock for RawRwLock[src]

type GuardMarker = GuardNoSend

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

impl RawRwLockFair for RawRwLock[src]

impl RawRwLockDowngrade for RawRwLock[src]

impl RawRwLockTimed for RawRwLock[src]

type Duration = Duration

Duration type used for try_lock_for.

type Instant = Instant

Instant type used for try_lock_until.

impl RawRwLockRecursive for RawRwLock[src]

impl RawRwLockRecursiveTimed for RawRwLock[src]

impl RawRwLockUpgrade for RawRwLock[src]

impl RawRwLockUpgradeFair for RawRwLock[src]

impl RawRwLockUpgradeDowngrade for RawRwLock[src]

impl RawRwLockUpgradeTimed for RawRwLock[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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