Struct spmc::Sender [] [src]

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

The Sending side of a SPMC channel.

Methods

impl<T: Send> Sender<T>
[src]

Send a message to the receivers.

Returns a SendError if there are no more receivers listening.

Trait Implementations

impl<T: Send> Send for Sender<T>
[src]

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

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