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