pub enum RecvTimeoutError {
Timeout,
Disconnected,
}Expand description
Error returned by recv_timeout.
Variants§
Timeout
The timeout elapsed before a message arrived.
Disconnected
All senders have been dropped and no messages remain.
Implementations§
Source§impl RecvTimeoutError
impl RecvTimeoutError
Sourcepub fn is_timeout(&self) -> bool
pub fn is_timeout(&self) -> bool
Returns true if this error is the Timeout variant.
Sourcepub fn is_disconnected(&self) -> bool
pub fn is_disconnected(&self) -> bool
Returns true if this error is the Disconnected variant.
Trait Implementations§
Source§impl Clone for RecvTimeoutError
impl Clone for RecvTimeoutError
Source§fn clone(&self) -> RecvTimeoutError
fn clone(&self) -> RecvTimeoutError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecvTimeoutError
impl Debug for RecvTimeoutError
Source§impl Display for RecvTimeoutError
impl Display for RecvTimeoutError
Source§impl Error for RecvTimeoutError
impl Error for RecvTimeoutError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 for RecvTimeoutError
impl PartialEq for RecvTimeoutError
Source§fn eq(&self, other: &RecvTimeoutError) -> bool
fn eq(&self, other: &RecvTimeoutError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RecvTimeoutError
impl Eq for RecvTimeoutError
impl StructuralPartialEq for RecvTimeoutError
Auto Trait Implementations§
impl Freeze for RecvTimeoutError
impl RefUnwindSafe for RecvTimeoutError
impl Send for RecvTimeoutError
impl Sync for RecvTimeoutError
impl Unpin for RecvTimeoutError
impl UnsafeUnpin for RecvTimeoutError
impl UnwindSafe for RecvTimeoutError
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