Enum airmash_protocol::FlagUpdateType[][src]

pub enum FlagUpdateType {
    Position,
    Carrier,
}

Flag update type

Used to indicate whether the flag is now being carried by a player or whether the update sets the position of the flag directly.

Used in:

  • TODO

Implementors Note: This had a TODO: rev-eng comment on it but it doesn't seem to be missing any values.

Variants

Trait Implementations

impl Copy for FlagUpdateType
[src]

impl Clone for FlagUpdateType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FlagUpdateType
[src]

Formats the value using the given formatter. Read more

impl Hash for FlagUpdateType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Eq for FlagUpdateType
[src]

impl PartialEq for FlagUpdateType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Component for FlagUpdateType
[src]

Associated storage type for this component.

impl TryFrom<u8> for FlagUpdateType
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl From<FlagUpdateType> for u8
[src]

Performs the conversion.

impl TryFrom<u16> for FlagUpdateType
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl From<FlagUpdateType> for u16
[src]

Performs the conversion.

impl TryFrom<u32> for FlagUpdateType
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl From<FlagUpdateType> for u32
[src]

Performs the conversion.

impl TryFrom<i8> for FlagUpdateType
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl From<FlagUpdateType> for i8
[src]

Performs the conversion.

impl TryFrom<i16> for FlagUpdateType
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl From<FlagUpdateType> for i16
[src]

Performs the conversion.

impl TryFrom<i32> for FlagUpdateType
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl From<FlagUpdateType> for i32
[src]

Performs the conversion.

Auto Trait Implementations