pub struct BatteryState {
Show 16 fields pub header: Header, pub voltage: f32, pub temperature: f32, pub current: f32, pub charge: f32, pub capacity: f32, pub design_capacity: f32, pub percentage: f32, pub power_supply_status: u8, pub power_supply_health: u8, pub power_supply_technology: u8, pub present: bool, pub cell_voltage: Vec<f32>, pub cell_temperature: Vec<f32>, pub location: String, pub serial_number: String,
}

Fields

header: Headervoltage: f32temperature: f32current: f32charge: f32capacity: f32design_capacity: f32percentage: f32power_supply_status: u8power_supply_health: u8power_supply_technology: u8present: boolcell_voltage: Vec<f32>cell_temperature: Vec<f32>location: Stringserial_number: String

Implementations

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

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.