Enum Units
#[non_exhaustive]pub enum Units {
Show 24 variants
teragram_per_joule,
gigagram_per_joule,
megagram_per_joule,
kilogram_per_joule,
hectogram_per_joule,
decagram_per_joule,
gram_per_joule,
decigram_per_joule,
centigram_per_joule,
milligram_per_joule,
microgram_per_joule,
pound_per_joule,
pound_per_gigawatt_hour,
pound_per_megawatt_hour,
pound_per_kilowatt_hour,
pound_per_watt_hour,
kilogram_per_gigawatt_hour,
kilogram_per_megawatt_hour,
kilogram_per_kilowatt_hour,
kilogram_per_watt_hour,
gram_per_gigawatt_hour,
gram_per_megawatt_hour,
gram_per_kilowatt_hour,
gram_per_watt_hour,
}Expand description
Unit enum.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
teragram_per_joule
teragrams per joule
gigagram_per_joule
gigagrams per joule
megagram_per_joule
megagrams per joule
kilogram_per_joule
kilograms per joule
hectogram_per_joule
hectograms per joule
decagram_per_joule
decagrams per joule
gram_per_joule
grams per joule
decigram_per_joule
decigrams per joule
centigram_per_joule
centigrams per joule
milligram_per_joule
milligrams per joule
microgram_per_joule
micrograms per joule
pound_per_joule
pounds per joule
pound_per_gigawatt_hour
pounds per gigawatt hour
pound_per_megawatt_hour
pounds per megawatt hour
pound_per_kilowatt_hour
pounds per kilowatt hour
pound_per_watt_hour
pounds per watt hour
kilogram_per_gigawatt_hour
kilograms per gigawatt hour
kilogram_per_megawatt_hour
kilograms per megawatt hour
kilogram_per_kilowatt_hour
kilograms per kilowatt hour
kilogram_per_watt_hour
kilograms per watt hour
gram_per_gigawatt_hour
grams per gigawatt hour
gram_per_megawatt_hour
grams per megawatt hour
gram_per_kilowatt_hour
grams per kilowatt hour
gram_per_watt_hour
grams per watt hour
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Units
impl RefUnwindSafe for Units
impl Send for Units
impl Sync for Units
impl Unpin for Units
impl UnsafeUnpin for Units
impl UnwindSafe for Units
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.