Struct tokio::prelude::stream::SendError [] [src]

pub struct SendError<T, E>(_);
Deprecated since 0.1.4

: use sync::mpsc::channel instead

Error type for sending, used when the receiving end of the channel is dropped

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<T, E> Error for SendError<T, E> where
    E: Any,
    T: Any
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

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

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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