Struct futures::stream::Sender [] [src]

pub struct Sender<T, E> { /* fields omitted */ }

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]

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> Drop for Sender<T, E>
[src]

A method called when the value goes out of scope. Read more