pub type OptionBroadcastMapSender<T> = Option<Sender<T>>;
pub enum OptionBroadcastMapSender<T> { None, Some(Sender<T>), }
No value.
Some value of type T.
T