pub struct RealTimeData {
    pub signal_strength: u8,
    pub searching_time_too_long: bool,
    pub low_spo2: bool,
    pub pulse_beep: bool,
    pub probe_errors: bool,
    pub pulse_waveform: u8,
    pub searching_pulse: bool,
    pub bar_graph: u8,
    pub pi_invalid: bool,
    pub pulse_rate: u8,
    pub spo2: u8,
    pub pi: u16,
}
Expand description

Real time data

Fields

signal_strength: u8

Signal strength

searching_time_too_long: bool

Searching time too long

low_spo2: bool

Low SpO2

pulse_beep: bool

Pulse beep

probe_errors: bool

Probe errors

pulse_waveform: u8

Pulse waveform

searching_pulse: bool

Searching pulse

bar_graph: u8

Bar graph

pi_invalid: bool

PI invalid

pulse_rate: u8

Pulse rate

spo2: u8

SpO2

pi: u16

PI

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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.