pub type OptionBroadcastMapSender<T> = Option<BroadcastMapSender<T>>;Expand description
Re-exports structs, traits, and types from the broadcast_map module.
Represents an optional sender endpoint for a broadcast channel within a map.
Aliased Type§
pub enum OptionBroadcastMapSender<T> {
None,
Some(Sender<T>),
}