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§
source§impl RecvTimeoutError
impl RecvTimeoutError
sourcepub fn is_timeout(&self) -> bool
pub fn is_timeout(&self) -> bool
Returns true
if the receive operation timed out.
sourcepub 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§
source§impl Clone for RecvTimeoutError
impl Clone for RecvTimeoutError
source§fn clone(&self) -> RecvTimeoutError
fn clone(&self) -> RecvTimeoutError
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 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)>
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 From<RecvError> for RecvTimeoutError
impl From<RecvError> for RecvTimeoutError
source§fn from(err: RecvError) -> RecvTimeoutError
fn from(err: RecvError) -> RecvTimeoutError
Converts to this type from the input type.