pub enum BatteryLevel {
Full,
Good,
Low,
Critical,
Empty,
Unknown,
}Expand description
Battery level buckets (for devices that don’t report exact percentage).
Variants§
Full
Full (> 80%).
Good
Good (50-80%).
Low
Low (20-50%).
Critical
Critical (< 20%).
Empty
Empty/dead.
Unknown
Unknown level.
Implementations§
Source§impl BatteryLevel
impl BatteryLevel
Trait Implementations§
Source§impl Clone for BatteryLevel
impl Clone for BatteryLevel
Source§fn clone(&self) -> BatteryLevel
fn clone(&self) -> BatteryLevel
Returns a duplicate 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 Debug for BatteryLevel
impl Debug for BatteryLevel
Source§impl Display for BatteryLevel
impl Display for BatteryLevel
Source§impl PartialEq for BatteryLevel
impl PartialEq for BatteryLevel
impl Copy for BatteryLevel
impl Eq for BatteryLevel
impl StructuralPartialEq for BatteryLevel
Auto Trait Implementations§
impl Freeze for BatteryLevel
impl RefUnwindSafe for BatteryLevel
impl Send for BatteryLevel
impl Sync for BatteryLevel
impl Unpin for BatteryLevel
impl UnwindSafe for BatteryLevel
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