1 2 3 4 5 6 7
//! A module for a channel that acts exactly as std::sync::mpsc::channel does, but rather than //! storing messages in an underlyhing queue, it only stores the latest message. pub mod map; pub mod value;