rw_cell/
lib.rs

1//! # Rw Cell
2//!
3//! rw_cell provides the ability to securely write data from one location of application
4//! and read it from another even if Writer and Reader located in different
5//! threads without copying/cloning and blocking access to data.
6//!
7
8pub mod mpsc;
9pub mod broadcast;
10pub mod bridge;
11pub mod option;
12