1.0.0[][src]Struct spmc::SendError

pub struct SendError<T>(pub T);

An error returned from the Sender::send or SyncSender::send function on channels.

A send operation can only fail if the receiving end of a channel is disconnected, implying that the data could never be received. The error contains the data being sent as a payload so it can be recovered.

Trait Implementations

impl<T> Eq for SendError<T> where
    T: Eq
[src]

impl<T> Copy for SendError<T> where
    T: Copy
[src]

impl<T> PartialEq<SendError<T>> for SendError<T> where
    T: PartialEq<T>, 
[src]

impl<T> Clone for SendError<T> where
    T: Clone
[src]

fn clone_from(&mut self, source: &Self)[src]

Performs copy-assignment from source. Read more

impl<T> Display for SendError<T>[src]

impl<T> Debug for SendError<T>[src]

impl<T> Error for SendError<T> where
    T: Send
[src]

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

impl<T> Send for SendError<T> where
    T: Send

impl<T> Sync for SendError<T> where
    T: Sync

impl<T> Unpin for SendError<T> where
    T: Unpin

impl<T> RefUnwindSafe for SendError<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for SendError<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]