agde

Enum Recipient

source
pub enum Recipient {
    All,
    Selected(SelectedPier),
}
Expand description

The recipient of a Message.

Variants§

§

All

Send this message to all piers.

§

Selected(SelectedPier)

Send this message to only the SelectedPier.

Trait Implementations§

source§

impl Debug for Recipient

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Recipient