Struct crossbeam_channel::SelectTimeoutError
source · pub struct SelectTimeoutError;
Expand description
An error returned from the select_timeout
method.
Failed because none of the channel operations became ready before the timeout.
Trait Implementations§
source§impl Clone for SelectTimeoutError
impl Clone for SelectTimeoutError
source§fn clone(&self) -> SelectTimeoutError
fn clone(&self) -> SelectTimeoutError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SelectTimeoutError
impl Debug for SelectTimeoutError
source§impl Display for SelectTimeoutError
impl Display for SelectTimeoutError
source§impl Error for SelectTimeoutError
impl Error for SelectTimeoutError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<SelectTimeoutError> for SelectTimeoutError
impl PartialEq<SelectTimeoutError> for SelectTimeoutError
source§fn eq(&self, other: &SelectTimeoutError) -> bool
fn eq(&self, other: &SelectTimeoutError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SelectTimeoutError
impl Eq for SelectTimeoutError
impl StructuralEq for SelectTimeoutError
impl StructuralPartialEq for SelectTimeoutError
Auto Trait Implementations§
impl RefUnwindSafe for SelectTimeoutError
impl Send for SelectTimeoutError
impl Sync for SelectTimeoutError
impl Unpin for SelectTimeoutError
impl UnwindSafe for SelectTimeoutError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more