Enum uom::si::heat_flux_density::Units[][src]

pub enum Units {
    yottawatt_per_square_meter(yottawatt_per_square_meter),
    zettawatt_per_square_meter(zettawatt_per_square_meter),
    exawatt_per_square_meter(exawatt_per_square_meter),
    petawatt_per_square_meter(petawatt_per_square_meter),
    terawatt_per_square_meter(terawatt_per_square_meter),
    gigawatt_per_square_meter(gigawatt_per_square_meter),
    megawatt_per_square_meter(megawatt_per_square_meter),
    kilowatt_per_square_meter(kilowatt_per_square_meter),
    hectowatt_per_square_meter(hectowatt_per_square_meter),
    decawatt_per_square_meter(decawatt_per_square_meter),
    watt_per_square_meter(watt_per_square_meter),
    deciwatt_per_square_meter(deciwatt_per_square_meter),
    centiwatt_per_square_meter(centiwatt_per_square_meter),
    milliwatt_per_square_meter(milliwatt_per_square_meter),
    microwatt_per_square_meter(microwatt_per_square_meter),
    nanowatt_per_square_meter(nanowatt_per_square_meter),
    picowatt_per_square_meter(picowatt_per_square_meter),
    femtowatt_per_square_meter(femtowatt_per_square_meter),
    attowatt_per_square_meter(attowatt_per_square_meter),
    zeptowatt_per_square_meter(zeptowatt_per_square_meter),
    yoctowatt_per_square_meter(yoctowatt_per_square_meter),
    // some variants omitted
}

Unit enum.

Variants

yottawatt_per_square_meter(yottawatt_per_square_meter)

yottawatts per square meter

zettawatt_per_square_meter(zettawatt_per_square_meter)

zettawatts per square meter

exawatt_per_square_meter(exawatt_per_square_meter)

exawatts per square meter

petawatt_per_square_meter(petawatt_per_square_meter)

petawatts per square meter

terawatt_per_square_meter(terawatt_per_square_meter)

terawatts per square meter

gigawatt_per_square_meter(gigawatt_per_square_meter)

gigawatts per square meter

megawatt_per_square_meter(megawatt_per_square_meter)

megawatts per square meter

kilowatt_per_square_meter(kilowatt_per_square_meter)

kilowatts per square meter

hectowatt_per_square_meter(hectowatt_per_square_meter)

hectowatts per square meter

decawatt_per_square_meter(decawatt_per_square_meter)

decawatts per square meter

watt_per_square_meter(watt_per_square_meter)

watts per square meter

deciwatt_per_square_meter(deciwatt_per_square_meter)

deciwatts per square meter

centiwatt_per_square_meter(centiwatt_per_square_meter)

centiwatts per square meter

milliwatt_per_square_meter(milliwatt_per_square_meter)

milliwatts per square meter

microwatt_per_square_meter(microwatt_per_square_meter)

microwatts per square meter

nanowatt_per_square_meter(nanowatt_per_square_meter)

nanowatts per square meter

picowatt_per_square_meter(picowatt_per_square_meter)

picowatts per square meter

femtowatt_per_square_meter(femtowatt_per_square_meter)

femtowatts per square meter

attowatt_per_square_meter(attowatt_per_square_meter)

attowatts per square meter

zeptowatt_per_square_meter(zeptowatt_per_square_meter)

zeptowatts per square meter

yoctowatt_per_square_meter(yoctowatt_per_square_meter)

yoctowatts per square meter

Implementations

impl Units[src]

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

Unit abbreviation.

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

Unit singular description.

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

Unit plural description.

Trait Implementations

impl Clone for Units[src]

impl Copy for Units[src]

impl Debug for Units[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.