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