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