Enum airmash_protocol::CommandReplyType[][src]

pub enum CommandReplyType {
    ShowInConsole,
    ShowInPopup,
}

TODO: Reverse engineer

Variants

Technically this should be any value other than 0, the from integer implementation for this enum deals with that.

Trait Implementations

impl Copy for CommandReplyType
[src]

impl Clone for CommandReplyType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CommandReplyType
[src]

Formats the value using the given formatter. Read more

impl Hash for CommandReplyType
[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 CommandReplyType
[src]

impl PartialEq for CommandReplyType
[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 CommandReplyType
[src]

Associated storage type for this component.

impl From<u8> for CommandReplyType
[src]

Performs the conversion.

impl From<CommandReplyType> for u8
[src]

Performs the conversion.

impl From<u16> for CommandReplyType
[src]

Performs the conversion.

impl From<CommandReplyType> for u16
[src]

Performs the conversion.

impl From<u32> for CommandReplyType
[src]

Performs the conversion.

impl From<CommandReplyType> for u32
[src]

Performs the conversion.

Auto Trait Implementations