pub struct CellVoltage {
pub cell_1_millivolts: u16,
pub cell_2_millivolts: u16,
pub cell_3_millivolts: u16,
pub cell_4_millivolts: u16,
}Expand description
Voltage readings for each of the four battery cells.
Fields§
§cell_1_millivolts: u16§cell_2_millivolts: u16§cell_3_millivolts: u16§cell_4_millivolts: u16Trait Implementations§
Auto Trait Implementations§
impl Freeze for CellVoltage
impl RefUnwindSafe for CellVoltage
impl Send for CellVoltage
impl Sync for CellVoltage
impl Unpin for CellVoltage
impl UnwindSafe for CellVoltage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more