Struct futures_shim::mpsc::SendError [] [src]

pub struct SendError<T>(_);

Represents an error sending data

To quote stdlib's documentation:

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

Formats the value using the given formatter.