pub enum ElectricCurrentUnit {
Ampere,
MilliAmpere,
MicroAmpere,
KiloAmpere,
}Expand description
Display/conversion units for ElectricCurrent.
Variants§
Ampere
Amperes (A).
MilliAmpere
Milliamperes (mA).
MicroAmpere
Microamperes (uA).
KiloAmpere
Kiloamperes (kA).
Trait Implementations§
Source§impl Clone for ElectricCurrentUnit
impl Clone for ElectricCurrentUnit
Source§fn clone(&self) -> ElectricCurrentUnit
fn clone(&self) -> ElectricCurrentUnit
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 ElectricCurrentUnit
impl Debug for ElectricCurrentUnit
Source§impl PartialEq for ElectricCurrentUnit
impl PartialEq for ElectricCurrentUnit
impl Copy for ElectricCurrentUnit
impl Eq for ElectricCurrentUnit
impl StructuralPartialEq for ElectricCurrentUnit
Auto Trait Implementations§
impl Freeze for ElectricCurrentUnit
impl RefUnwindSafe for ElectricCurrentUnit
impl Send for ElectricCurrentUnit
impl Sync for ElectricCurrentUnit
impl Unpin for ElectricCurrentUnit
impl UnsafeUnpin for ElectricCurrentUnit
impl UnwindSafe for ElectricCurrentUnit
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