pub enum ChargerActivity {
Standby = 0,
Trickle = 1,
ConstantCurrent = 2,
ConstantVoltage = 3,
Pending = 4,
Full = 5,
Timeout = 6,
}Expand description
What kind of charging (if any) is taking place?
Variants§
Trait Implementations§
Source§impl Debug for ChargerActivity
impl Debug for ChargerActivity
Auto Trait Implementations§
impl Freeze for ChargerActivity
impl RefUnwindSafe for ChargerActivity
impl Send for ChargerActivity
impl Sync for ChargerActivity
impl Unpin for ChargerActivity
impl UnwindSafe for ChargerActivity
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