Available on crate feature
std
only.Expand description
Structs§
- Synchronously sends values to an associated
Receiver
. - A reference to a message being received from a blocking channel.
- A reference to a message being sent to a blocking channel.
- Synchronously receives values from associated
Sender
s. - StaticChannel
static
A statically-allocated, blocking bounded MPSC channel. - StaticReceiver
static
Synchronously receives values from associatedStaticSender
s. - StaticSender
static
Synchronously sends values to an associatedStaticReceiver
.
Functions§
- Returns a new synchronous multi-producer, single consumer (MPSC) channel with the provided capacity.
- Returns a new synchronous multi-producer, single consumer channel with the provided recycling policy.