[][src]Struct parking_monitor::MonitorGuard

pub struct MonitorGuard<'a, T> { /* fields omitted */ }

Methods

impl<'a, T> MonitorGuard<'a, T>[src]

pub fn new(cv: &'a Condvar, guard: MutexGuard<'a, T>) -> Self[src]

pub fn notify_one(&self)[src]

pub fn notify_all(&self)[src]

pub fn wait(&mut self)[src]

pub fn wait_for(&mut self, timeout: Duration) -> WaitTimeoutResult[src]

pub fn wait_until(&mut self, timeout: Instant) -> WaitTimeoutResult[src]

Trait Implementations

impl<T, '_> DerefMut for MonitorGuard<'_, T>[src]

impl<T, '_> Deref for MonitorGuard<'_, T>[src]

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a, T> !Send for MonitorGuard<'a, T>

impl<'a, T> Sync for MonitorGuard<'a, T> where
    T: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T