Module mpsc

Source
Expand description

channels in the futures-rs crate cannot error, yet they return () for their error type for some stupid reason. This is a wrapper around futures-rs unbounded channels which removes the error.

Structs§

SendError
Error type for sending, used when the receiving end of a channel is dropped
UnboundedReceiver
UnboundedSender
The transmission end of a channel which is used to send values.

Functions§

unbounded