Struct std::sync::mpsc::SendError1.0.0 [] [src]

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: PartialEq> PartialEq for SendError<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

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

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

[src]

Returns a copy of the value. Read more

[src]

Performs copy-assignment from source. Read more

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

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

[src]

Formats the value using the given formatter. Read more

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

[src]

Formats the value using the given formatter. Read more

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

[src]

A short description of the error. Read more

[src]

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

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

[src]

Performs the conversion.