Enum serenity::model::event::RelatedId[][src]

pub enum RelatedId<T> {
    Never,
    None,
    Some(T),
    Multiple(Vec<T>),
}
Expand description

Similar to Option, but with additional variants relevant to Event’s id methods (such as Event::user_id).

Variants

Never

This event type will never have this kind of related ID

None

This particular event has no related ID of this type, but other events of this type may.

Some

A single related ID

Tuple Fields of Some

0: T
Multiple

Multiple related IDs

Tuple Fields of Multiple

0: Vec<T>

Implementations

Trait Implementations

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.