Enum nakamoto_node::client::chan::RecvTimeoutError
[−]pub enum RecvTimeoutError {
Timeout,
Disconnected,
}Expand description
An error returned from the recv_timeout method.
Variants
Timeout
A message could not be received because the channel is empty and the operation timed out.
If this is a zero-capacity channel, then the error indicates that there was no sender available to send a message and the operation timed out.
Disconnected
The message could not be received because the channel is empty and disconnected.
Implementations
impl RecvTimeoutError
impl RecvTimeoutError
pub fn is_timeout(&self) -> bool
pub fn is_timeout(&self) -> bool
Returns true if the receive operation timed out.
pub fn is_disconnected(&self) -> bool
pub fn is_disconnected(&self) -> bool
Returns true if the receive operation failed because the channel is disconnected.
Trait Implementations
impl Clone for RecvTimeoutError
impl Clone for RecvTimeoutError
fn clone(&self) -> RecvTimeoutError
fn clone(&self) -> RecvTimeoutError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Debug for RecvTimeoutError
impl Debug for RecvTimeoutError
impl Display for RecvTimeoutError
impl Display for RecvTimeoutError
impl Error for RecvTimeoutError
impl Error for RecvTimeoutError
1.30.0 · sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl From<RecvError> for RecvTimeoutError
impl From<RecvError> for RecvTimeoutError
fn from(err: RecvError) -> RecvTimeoutError
fn from(err: RecvError) -> RecvTimeoutError
Converts to this type from the input type.
sourceimpl From<RecvTimeoutError> for Error
impl From<RecvTimeoutError> for Error
sourcefn from(err: RecvTimeoutError) -> Error
fn from(err: RecvTimeoutError) -> Error
Converts to this type from the input type.
impl PartialEq<RecvTimeoutError> for RecvTimeoutError
impl PartialEq<RecvTimeoutError> for RecvTimeoutError
fn eq(&self, other: &RecvTimeoutError) -> bool
fn eq(&self, other: &RecvTimeoutError) -> bool
impl Copy for RecvTimeoutError
impl Eq for RecvTimeoutError
impl StructuralEq for RecvTimeoutError
impl StructuralPartialEq for RecvTimeoutError
Auto Trait Implementations
impl RefUnwindSafe for RecvTimeoutError
impl Send for RecvTimeoutError
impl Sync for RecvTimeoutError
impl Unpin for RecvTimeoutError
impl UnwindSafe for RecvTimeoutError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more