pub enum CurrentConsumption {
I_0mA,
I_1mA,
I_5mA,
I_10mA,
I_25mA,
I_35mA,
I_45mA,
I_60mA,
I_80mA,
I_100mA,
I_200mA,
}
Variants§
Trait Implementations§
Source§impl Clone for CurrentConsumption
impl Clone for CurrentConsumption
Source§fn clone(&self) -> CurrentConsumption
fn clone(&self) -> CurrentConsumption
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 Debug for CurrentConsumption
impl Debug for CurrentConsumption
Source§impl From<&CurrentConsumption> for u32
impl From<&CurrentConsumption> for u32
Source§fn from(i: &CurrentConsumption) -> u32
fn from(i: &CurrentConsumption) -> u32
Converts to this type from the input type.
Source§impl PartialEq for CurrentConsumption
impl PartialEq for CurrentConsumption
impl Copy for CurrentConsumption
impl Eq for CurrentConsumption
impl StructuralPartialEq for CurrentConsumption
Auto Trait Implementations§
impl Freeze for CurrentConsumption
impl RefUnwindSafe for CurrentConsumption
impl Send for CurrentConsumption
impl Sync for CurrentConsumption
impl Unpin for CurrentConsumption
impl UnwindSafe for CurrentConsumption
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