OptionBroadcastMapReceiver

Type Alias OptionBroadcastMapReceiver 

Source
pub type OptionBroadcastMapReceiver<T> = Option<Receiver<T>>;
Expand description

Represents an optional receiver endpoint for a broadcast channel within a map.

Aliased Type§

pub enum OptionBroadcastMapReceiver<T> {
    None,
    Some(Receiver<T>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Receiver<T>)

Some value of type T.