<link rel="stylesheet" href="../../../noscript1.34.1.css">

1.0.0[][src]Struct std::sync::mpsc::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: Send> Error for SendError<T>[src]

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

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

fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

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

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

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

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

impl<T> From<SendError<T>> for TrySendError<T>
1.24.0
[src]

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

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

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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

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

type Owned = T

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