OptionBroadcastMapSender

Type Alias OptionBroadcastMapSender 

Source
pub type OptionBroadcastMapSender<T> = Option<Sender<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>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Sender<T>)

Some value of type T.