Struct condvar::CondVar [] [src]

pub struct CondVar {
    // some fields omitted
}

Methods

impl CondVar
[src]

fn new() -> CondVar

fn notify_one(&self)

fn notify_all(&self)

fn wait(&self) -> CondVarResult<MutexGuard<bool>>

fn wait_timeout_ms(&self, timeout_ms: i64) -> CondVarResult<(MutexGuard<bool>, bool)>