pub enum Capabilities {
    Languages(Field<Uint8z>),
    Sports(Field<SportBits0>),
    WorkoutsSupported(Field<WorkoutCapabilities>),
    ConnectivitySupported(Field<ConnectivityCapabilities>),
    Unknown {
        data: Vec<u8>,
        field_def_num: u8,
    },
}

Variants

Languages(Field<Uint8z>)

Use language_bits_x types where x is index of array.

Sports(Field<SportBits0>)

Use sport_bits_x types where x is index of array.

WorkoutsSupported(Field<WorkoutCapabilities>)

ConnectivitySupported(Field<ConnectivityCapabilities>)

Unknown

Fields

data: Vec<u8>
field_def_num: u8

Trait Implementations

Formats the value using the given formatter. Read more

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.