pub enum BarometerData {
    Timestamp(Field<DateTime>),
    TimestampMs(Field<Uint16>),
    SampleTimeOffset(Field<Uint16>),
    BaroPres(Field<Uint32>),
    Unknown {
        data: Vec<u8>,
        field_def_num: u8,
    },
}

Variants

Timestamp(Field<DateTime>)

Whole second part of the timestamp

TimestampMs(Field<Uint16>)

Millisecond part of the timestamp.

SampleTimeOffset(Field<Uint16>)

Each time in the array describes the time at which the barometer sample with the corrosponding index was taken. The samples may span across seconds. Array size must match the number of samples in baro_cal

BaroPres(Field<Uint32>)

These are the raw ADC reading. The samples may span across seconds. A conversion will need to be done on this data once read.

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.