pub enum SIPrefix<T> {
Show 21 variants Yocto(T), Zepto(T), Atto(T), Femto(T), Pico(T), Nano(T), Micro(T), Milli(T), Centi(T), Deci(T), Unity(T), Deca(T), Hecto(T), Kilo(T), Mega(T), Giga(T), Tera(T), Peta(T), Exa(T), Zetta(T), Yotta(T),
}
Expand description

SI-Prefixes as used in several fields.

Variants§

§

Yocto(T)

x · 10⁻²⁴.

§

Zepto(T)

x · 10⁻²¹.

§

Atto(T)

x · 10⁻¹⁸.

§

Femto(T)

x · 10⁻¹⁵.

§

Pico(T)

x · 10⁻¹².

§

Nano(T)

x · 10⁻⁹.

§

Micro(T)

x · 10⁻⁶.

§

Milli(T)

x · 10⁻³.

§

Centi(T)

x · 10⁻².

§

Deci(T)

x · 10⁻¹.

§

Unity(T)

x · 10⁰.

§

Deca(T)

x · 10¹.

§

Hecto(T)

x · 10².

§

Kilo(T)

x · 10³.

§

Mega(T)

x · 10⁶.

§

Giga(T)

x · 10⁹.

§

Tera(T)

x · 10¹².

§

Peta(T)

x · 10¹⁵.

§

Exa(T)

x · 10¹⁸.

§

Zetta(T)

x · 10²¹.

§

Yotta(T)

x · 10²⁴.

Implementations§

source§

impl<T: Into<f64> + Copy> SIPrefix<T>

source

pub fn to_decimal_f32(&self) -> f32

Converts a SI-Prefix value into a regular f32.

Returns

A f32.

Examples
use lib_rapid::math::unit_conversion::SIPrefix;
assert_eq!(0.000_000_000_000_000_000_000_005, SIPrefix::Yocto(5.0).to_decimal_f32());
assert_eq!(0.5, SIPrefix::Deci(5.0).to_decimal_f32());
assert_eq!(5000.0, SIPrefix::Kilo(5.0).to_decimal_f32());
source§

impl<T: Into<f64> + Copy> SIPrefix<T>

source

pub fn to_decimal_f64(&self) -> f64

Converts a SI-Prefix value into a regular f64.

Returns

A f64.

Examples
use lib_rapid::math::unit_conversion::SIPrefix;
assert_eq!(0.000_000_000_000_000_000_000_005, SIPrefix::Yocto(5.0).to_decimal_f64());
assert_eq!(0.5, SIPrefix::Deci(5.0).to_decimal_f64());
assert_eq!(5000.0, SIPrefix::Kilo(5.0).to_decimal_f64());

Trait Implementations§

source§

impl<T: Clone> Clone for SIPrefix<T>

source§

fn clone(&self) -> SIPrefix<T>

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<T: Into<f64> + Copy> Into<f32> for SIPrefix<T>

source§

fn into(self) -> f32

Converts this type into the (usually inferred) input type.
source§

impl<T: Into<f64> + Copy> Into<f64> for SIPrefix<T>

source§

fn into(self) -> f64

Converts this type into the (usually inferred) input type.
source§

impl<T: PartialEq> PartialEq for SIPrefix<T>

source§

fn eq(&self, other: &SIPrefix<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Copy> Copy for SIPrefix<T>

source§

impl<T> StructuralPartialEq for SIPrefix<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for SIPrefix<T>
where T: RefUnwindSafe,

§

impl<T> Send for SIPrefix<T>
where T: Send,

§

impl<T> Sync for SIPrefix<T>
where T: Sync,

§

impl<T> Unpin for SIPrefix<T>
where T: Unpin,

§

impl<T> UnwindSafe for SIPrefix<T>
where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> ToOwned for T
where 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 T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.