pub struct WaitTimeoutResult(_);
A type indicating whether a timed wait on a condition variable returned due to a time out or not.
impl WaitTimeoutResult
[src]
fn timed_out(&self) -> boolReturns whether the wait was known to have timed out.
impl Debug for WaitTimeoutResult
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter.
impl PartialEq for WaitTimeoutResult
[src]
fn eq(&self, __arg_0: &WaitTimeoutResult) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &WaitTimeoutResult) -> boolThis method tests for !=.
impl Eq for WaitTimeoutResult
[src]
impl Copy for WaitTimeoutResult
[src]
impl Clone for WaitTimeoutResult
[src]
fn clone(&self) -> WaitTimeoutResultReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/sync/struct.WaitTimeoutResult.html