Struct relay::Sender [] [src]

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

The Sender portion of a channel.

Methods

impl<T> Sender<T>
[src]

[src]

Sends the message to the Receiver.

[src]

Returns true if the Receiver has been dropped.

[src]

Creates a Future that waits until someone is waiting on the Receiver.

Trait Implementations

impl<T> Drop for Sender<T>
[src]

[src]

Executes the destructor for this type. Read more

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

[src]

Formats the value using the given formatter.