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