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
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl From<RecvError> for RecvTimeoutError
impl From<RecvError> for RecvTimeoutError
Source§fn from(err: RecvError) -> RecvTimeoutError
fn from(err: RecvError) -> RecvTimeoutError
Source§impl PartialEq for RecvTimeoutError
impl PartialEq for RecvTimeoutError
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Timeout
: 0 bytesDisconnected
: 0 bytes