Struct mio_misc::channel::CrossbeamSender [−][src]
pub struct CrossbeamSender<T> { /* fields omitted */ }
Expand description
The sending half of a channel crossbeam channel
Implementations
Attempts to send a value on this channel, returning it back if it could not be sent. For bounded channels, it will block.
Attempts to send a value on this channel without blocking.
This method differs from send
by returning immediately if the channel’s
buffer is full or no receiver is waiting to acquire some data.