pub enum RecvTimeoutError {
Timeout,
Disconnected,
}
🔬This is a nightly-only experimental API. (
mpmc_channel
)Expand description
This enumeration is the list of possible errors that made recv_timeout
unable to return data when called. This can occur with both a channel
and
a sync_channel
.
Variants§
Timeout
🔬This is a nightly-only experimental API. (
mpmc_channel
)This channel is currently empty, but the Sender(s) have not yet disconnected, so data may yet become available.
Disconnected
🔬This is a nightly-only experimental API. (
mpmc_channel
)The channel’s sending half has become disconnected, and there will never be any more data received on it.
Trait Implementations§
1.12.0 · 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 more1.12.0 · source§impl Debug for RecvTimeoutError
impl Debug for RecvTimeoutError
1.15.0 · source§impl Display for RecvTimeoutError
impl Display for RecvTimeoutError
1.15.0 · source§impl Error for RecvTimeoutError
impl Error for RecvTimeoutError
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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.24.0 · source§impl From<RecvError> for RecvTimeoutError
impl From<RecvError> for RecvTimeoutError
source§fn from(err: RecvError) -> RecvTimeoutError
fn from(err: RecvError) -> RecvTimeoutError
Converts a RecvError
into a RecvTimeoutError
.
This conversion always returns RecvTimeoutError::Disconnected
.
No data is allocated on the heap.
1.12.0 · 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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)