pub type OptionBroadcastMapReceiver<T> = Option<Receiver<T>>;
Represents an optional receiver endpoint for a broadcast channel within a map.
pub enum OptionBroadcastMapReceiver<T> { None, Some(Receiver<T>), }
No value.
Some value of type T.
T