pub enum SdmProfile {
    MessageIndex(Field<MessageIndex>),
    Enabled(Field<Bool>),
    SdmAntId(Field<Uint16z>),
    SdmCalFactor(Field<Uint16>),
    Odometer(Field<Uint32>),
    SpeedSource(Field<Bool>),
    SdmAntIdTransType(Field<Uint8z>),
    OdometerRollover(Field<Uint8>),
    Unknown {
        data: Vec<u8>,
        field_def_num: u8,
    },
}

Variants

MessageIndex(Field<MessageIndex>)

Enabled(Field<Bool>)

SdmAntId(Field<Uint16z>)

SdmCalFactor(Field<Uint16>)

Odometer(Field<Uint32>)

SpeedSource(Field<Bool>)

Use footpod for speed source instead of GPS

SdmAntIdTransType(Field<Uint8z>)

OdometerRollover(Field<Uint8>)

Rollover counter that can be used to extend the odometer

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.