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

pub struct Sender<T, E> { /* fields omitted */ }
Deprecated since 0.1.4:

use sync::mpsc::channel instead

The transmission end of a channel which is used to send values.

This is created by the channel method in the stream module.

Methods

impl<T, E> Sender<T, E>[src]

pub fn send(self, t: Result<T, E>) -> FutureSender<T, E>[src]

Deprecated since 0.1.4:

use sync::mpsc::channel instead

Sends a new value along this channel to the receiver.

This method consumes the sender and returns a future which will resolve to the sender again when the value sent has been consumed.

Trait Implementations

impl<T, E> Debug for Sender<T, E> where
    E: Debug,
    T: Debug
[src]

Auto Trait Implementations

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

impl<T, E> Unpin for Sender<T, E>

impl<T, E> Sync for Sender<T, E> where
    E: Send,
    T: Send

impl<T, E> !UnwindSafe for Sender<T, E>

impl<T, E> !RefUnwindSafe for Sender<T, E>

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T