Module abi_stable::external_types::crossbeam_channel
source · Expand description
Ffi-safe wrapper types around the crossbeam-channel channel types.
Structs§
- An iterator which receives the values sent through the channel, blocking until a value is received.
- An iterator which receives the values sent through the channel, blocking until a value is received.
- The receiver end of a channel, which can be either bounded or unbounded.
- The sender end of a channel, which can be either bounded or unbounded.
Functions§
- Creates a channel which can hold up to
capacity
elements in its internal queue. - Creates a receiver that can never receive any value.
- Creates a channel which can hold an unbounded amount elements in its internal queue.