jackiechan 1.0.0

Bounded mpsc channel optimized for lazy bulk operations
Documentation
1
2
3
4
5
6
7
8
9
10
//! Channel like interface on shared state
#![forbid(unsafe_code)]
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]

mod channel;

/// Channel
pub use channel::{
    bounded, Receiver, RecvError, RecvTimeoutError, SendError, Sender, TryRecvError, TrySendError,
};