Enum TryRecvError
enum TryRecvError<T>
An error returned from the try_recv method.
See the documentation for try_recv for more information on how to use this error.
Variants
-
Empty(Receiver<T>) The
Senderhas not sent a message yet, but it might in the future (as it has not yet disconnected). This variant contains theReceiverthattry_recvtook ownership over.-
Disconnected The corresponding
Senderhalf of this channel has become disconnected, and there will never be any more data sent over the channel.
Implementations
impl<T> Any for TryRecvError<T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for TryRecvError<T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for TryRecvError<T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> Debug for TryRecvError<T>
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl<T> Display for TryRecvError<T>
fn fmt(self: &Self, f: &mut fmt::Formatter<'_>) -> fmt::Result
impl<T> Error for TryRecvError<T>
impl<T> Freeze for TryRecvError<T>
impl<T> From for TryRecvError<T>
fn from(err: RecvError) -> TryRecvError<T>Converts a
RecvErrorinto aTryRecvError.This conversion always returns
TryRecvError::Disconnected.No data is allocated on the heap.
impl<T> From for TryRecvError<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> RefUnwindSafe for TryRecvError<T>
impl<T> Send for TryRecvError<T>
impl<T> Sync for TryRecvError<T>
impl<T> ToString for TryRecvError<T>
fn to_string(self: &Self) -> String
impl<T> Unpin for TryRecvError<T>
impl<T> UnwindSafe for TryRecvError<T>
impl<T, U> Into for TryRecvError<T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for TryRecvError<T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for TryRecvError<T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>