struct GoldfishBatteryState {
int_status: u32,
int_enable: u32,
ac_online: u32,
status: u32,
health: u32,
present: u32,
capacity: u32,
voltage: u32,
current: u32,
charge_counter: u32,
charge_full: u32,
bat_config: BatConfig,
}Fields§
§int_status: u32§int_enable: u32§ac_online: u32§status: u32§health: u32§present: u32§capacity: u32§voltage: u32§current: u32§charge_counter: u32§charge_full: u32§bat_config: BatConfigImplementations§
Source§impl GoldfishBatteryState
impl GoldfishBatteryState
fn set_int_status(&mut self, mask: u32) -> bool
fn int_status(&self) -> u32
pub(crate) fn set_ac_online(&mut self, value: u32) -> bool
pub(crate) fn set_status(&mut self, value: u32) -> bool
pub(crate) fn set_health(&mut self, value: u32) -> bool
pub(crate) fn set_present(&mut self, value: u32) -> bool
pub(crate) fn set_capacity(&mut self, value: u32) -> bool
pub(crate) fn set_voltage(&mut self, value: u32) -> bool
pub(crate) fn set_current(&mut self, value: u32) -> bool
pub(crate) fn set_charge_counter(&mut self, value: u32) -> bool
pub(crate) fn set_charge_full(&mut self, value: u32) -> bool
pub(crate) fn set_bat_config(&mut self, value: BatConfig) -> bool
Trait Implementations§
Source§impl Clone for GoldfishBatteryState
impl Clone for GoldfishBatteryState
Source§fn clone(&self) -> GoldfishBatteryState
fn clone(&self) -> GoldfishBatteryState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for GoldfishBatteryState
impl<'de> Deserialize<'de> for GoldfishBatteryState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GoldfishBatteryState
impl RefUnwindSafe for GoldfishBatteryState
impl Send for GoldfishBatteryState
impl Sync for GoldfishBatteryState
impl Unpin for GoldfishBatteryState
impl UnwindSafe for GoldfishBatteryState
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