Crate jackiechan

Source
Expand description

Channel like interface on shared state

Structs§

Receiver
Channel The receiving side of a channel.
RecvError
Channel An error returned from Receiver::recv().
SendError
Channel An error returned from Sender::send().
Sender
Channel The sending side of a channel.

Enums§

RecvTimeoutError
Channel An error returned from the recv_timeout method.
TryRecvError
Channel An error returned from Receiver::try_recv().
TrySendError
Channel An error returned from Sender::try_send().

Functions§

bounded
Channel Creates a bounded channel.