Struct ergo_sync::ch::SendError [] [src]

pub struct SendError<T>(pub T);

An error returned from the Sender::send method.

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.

Methods

impl<T> SendError<T>
[src]

[src]

Unwraps the value.

Examples

use crossbeam_channel::unbounded;

let (tx, rx) = unbounded();
drop(rx);

if let Err(err) = tx.send("foo") {
    assert_eq!(err.into_inner(), "foo");
}

Trait Implementations

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

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

[src]

[src]

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

[src]

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

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

[src]

[src]

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

[src]

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

[src]