pub type OptionBroadcastMapSender<T> = Option<BroadcastMapSender<T>>;Expand description
Represents an optional sender endpoint for a broadcast channel within a map.
Aliased Type§
pub enum OptionBroadcastMapSender<T> {
None,
Some(Sender<T>),
}