Crate rw_cell

Crate rw_cell 

Source
Expand description

§Rw Cell

rw_cell provides the ability to securely write data from one location of application and read it from another even if Writer and Reader located in different threads without copying/cloning and blocking access to data.

Modules§

bridge
Implements the pattern “single producer single consumer”
broadcast
Implements the pattern “single producer multiple consumer”
mpsc
Implements the pattern “multiple producer single consumer”
option