Enum uom::si::mass_rate::Units

source ·
#[non_exhaustive]
pub enum Units {
Show 48 variants yottagram_per_second(yottagram_per_second), zettagram_per_second(zettagram_per_second), exagram_per_second(exagram_per_second), petagram_per_second(petagram_per_second), teragram_per_second(teragram_per_second), gigagram_per_second(gigagram_per_second), megagram_per_second(megagram_per_second), kilogram_per_second(kilogram_per_second), hectogram_per_second(hectogram_per_second), decagram_per_second(decagram_per_second), gram_per_second(gram_per_second), decigram_per_second(decigram_per_second), centigram_per_second(centigram_per_second), milligram_per_second(milligram_per_second), microgram_per_second(microgram_per_second), nanogram_per_second(nanogram_per_second), picogram_per_second(picogram_per_second), femtogram_per_second(femtogram_per_second), attogram_per_second(attogram_per_second), zeptogram_per_second(zeptogram_per_second), yoctogram_per_second(yoctogram_per_second), kilogram_per_minute(kilogram_per_minute), kilogram_per_hour(kilogram_per_hour), kilogram_per_day(kilogram_per_day), gram_per_minute(gram_per_minute), gram_per_hour(gram_per_hour), gram_per_day(gram_per_day), carat_per_second(carat_per_second), grain_per_second(grain_per_second), hundredweight_long_per_second(hundredweight_long_per_second), hundredweight_short_per_second(hundredweight_short_per_second), ounce_per_second(ounce_per_second), ounce_troy_per_second(ounce_troy_per_second), pennyweight_per_second(pennyweight_per_second), pound_per_second(pound_per_second), pound_per_minute(pound_per_minute), pound_per_hour(pound_per_hour), pound_per_day(pound_per_day), pound_troy_per_second(pound_troy_per_second), slug_per_second(slug_per_second), ton_assay_per_second(ton_assay_per_second), ton_long_per_second(ton_long_per_second), ton_short_per_second(ton_short_per_second), ton_short_per_hour(ton_short_per_hour), ton_per_second(ton_per_second), ton_per_minute(ton_per_minute), ton_per_hour(ton_per_hour), ton_per_day(ton_per_day),
}
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.
§

yottagram_per_second(yottagram_per_second)

yottagrams per second

§

zettagram_per_second(zettagram_per_second)

zettagrams per second

§

exagram_per_second(exagram_per_second)

exagrams per second

§

petagram_per_second(petagram_per_second)

petagrams per second

§

teragram_per_second(teragram_per_second)

teragrams per second

§

gigagram_per_second(gigagram_per_second)

gigagrams per second

§

megagram_per_second(megagram_per_second)

megagrams per second

§

kilogram_per_second(kilogram_per_second)

kilograms per second

§

hectogram_per_second(hectogram_per_second)

hectograms per second

§

decagram_per_second(decagram_per_second)

decagrams per second

§

gram_per_second(gram_per_second)

grams per second

§

decigram_per_second(decigram_per_second)

decigrams per second

§

centigram_per_second(centigram_per_second)

centigrams per second

§

milligram_per_second(milligram_per_second)

milligrams per second

§

microgram_per_second(microgram_per_second)

micrograms per second

§

nanogram_per_second(nanogram_per_second)

nanograms per second

§

picogram_per_second(picogram_per_second)

picograms per second

§

femtogram_per_second(femtogram_per_second)

femtograms per second

§

attogram_per_second(attogram_per_second)

attograms per second

§

zeptogram_per_second(zeptogram_per_second)

zeptograms per second

§

yoctogram_per_second(yoctogram_per_second)

yoctograms per second

§

kilogram_per_minute(kilogram_per_minute)

kilograms per minute

§

kilogram_per_hour(kilogram_per_hour)

kilograms per hour

§

kilogram_per_day(kilogram_per_day)

kilograms per day

§

gram_per_minute(gram_per_minute)

grams per minute

§

gram_per_hour(gram_per_hour)

grams per hour

§

gram_per_day(gram_per_day)

grams per day

§

carat_per_second(carat_per_second)

carats per second

§

grain_per_second(grain_per_second)

grains per second

§

hundredweight_long_per_second(hundredweight_long_per_second)

hundredweight (long) per second

§

hundredweight_short_per_second(hundredweight_short_per_second)

hundredweight (short) per second

§

ounce_per_second(ounce_per_second)

ounces per second

§

ounce_troy_per_second(ounce_troy_per_second)

troy ounces per second

§

pennyweight_per_second(pennyweight_per_second)

pennyweight per second

§

pound_per_second(pound_per_second)

pounds per second

§

pound_per_minute(pound_per_minute)

pounds per minute

§

pound_per_hour(pound_per_hour)

pounds per hour

§

pound_per_day(pound_per_day)

pounds per day

§

pound_troy_per_second(pound_troy_per_second)

troy pounds per second

§

slug_per_second(slug_per_second)

slugs per second

§

ton_assay_per_second(ton_assay_per_second)

assay tons per second

§

ton_long_per_second(ton_long_per_second)

long tons per second

§

ton_short_per_second(ton_short_per_second)

short tons per second

§

ton_short_per_hour(ton_short_per_hour)

short tons per hour

§

ton_per_second(ton_per_second)

tons per second

§

ton_per_minute(ton_per_minute)

tons per minute

§

ton_per_hour(ton_per_hour)

tons per hour

§

ton_per_day(ton_per_day)

tons per day

Implementations§

source§

impl Units

source

pub fn abbreviation(&self) -> &'static str

Unit abbreviation.

source

pub fn singular(&self) -> &'static str

Unit singular description.

source

pub fn plural(&self) -> &'static str

Unit plural description.

Trait Implementations§

source§

impl Clone for Units

source§

fn clone(&self) -> Units

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Units

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for Units

Auto Trait Implementations§

§

impl RefUnwindSafe for Units

§

impl Send for Units

§

impl Sync for Units

§

impl Unpin for Units

§

impl UnwindSafe for Units

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.