Struct crossbeam_channel::TrySelectError
source · pub struct TrySelectError;
Expand description
An error returned from the try_select
method.
Failed because none of the channel operations were ready.
Trait Implementations§
source§impl Clone for TrySelectError
impl Clone for TrySelectError
source§fn clone(&self) -> TrySelectError
fn clone(&self) -> TrySelectError
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 TrySelectError
impl Debug for TrySelectError
source§impl Display for TrySelectError
impl Display for TrySelectError
source§impl Error for TrySelectError
impl Error for TrySelectError
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<TrySelectError> for TrySelectError
impl PartialEq<TrySelectError> for TrySelectError
source§fn eq(&self, other: &TrySelectError) -> bool
fn eq(&self, other: &TrySelectError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TrySelectError
impl Eq for TrySelectError
impl StructuralEq for TrySelectError
impl StructuralPartialEq for TrySelectError
Auto Trait Implementations§
impl RefUnwindSafe for TrySelectError
impl Send for TrySelectError
impl Sync for TrySelectError
impl Unpin for TrySelectError
impl UnwindSafe for TrySelectError
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