Enum number_prefix::NumberPrefix [−][src]
The result of trying to apply a prefix to a floating-point value.
Variants
A standalone value is returned when the number is too small to have any prefixes applied to it. This is commonly a special case, so is handled separately.
Prefixed(Prefix, F)
A prefixed value is large enough for prefixes. This holds the prefix, as well as the resulting value.
Implementations
impl<F: Amounts> NumberPrefix<F>
[src]
pub fn decimal(amount: F) -> Self
[src]
Formats the given floating-point number using decimal prefixes.
This function accepts both f32
and f64
values. If you’re trying to
format an integer, you’ll have to cast it first.
Examples
use number_prefix::{Prefix, NumberPrefix}; assert_eq!(NumberPrefix::decimal(1_000_000_000_f32), NumberPrefix::Prefixed(Prefix::Giga, 1_f32));
pub fn binary(amount: F) -> Self
[src]
Formats the given floating-point number using binary prefixes.
This function accepts both f32
and f64
values. If you’re trying to
format an integer, you’ll have to cast it first.
Examples
use number_prefix::{Prefix, NumberPrefix}; assert_eq!(NumberPrefix::binary(1_073_741_824_f64), NumberPrefix::Prefixed(Prefix::Gibi, 1_f64));
Trait Implementations
impl<F: Clone> Clone for NumberPrefix<F>
[src]
fn clone(&self) -> NumberPrefix<F>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<F: Debug> Debug for NumberPrefix<F>
[src]
impl<F: Eq> Eq for NumberPrefix<F>
[src]
impl<F: PartialEq> PartialEq<NumberPrefix<F>> for NumberPrefix<F>
[src]
fn eq(&self, other: &NumberPrefix<F>) -> bool
[src]
fn ne(&self, other: &NumberPrefix<F>) -> bool
[src]
impl<F> StructuralEq for NumberPrefix<F>
[src]
impl<F> StructuralPartialEq for NumberPrefix<F>
[src]
Auto Trait Implementations
impl<F> RefUnwindSafe for NumberPrefix<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for NumberPrefix<F> where
F: Send,
F: Send,
impl<F> Sync for NumberPrefix<F> where
F: Sync,
F: Sync,
impl<F> Unpin for NumberPrefix<F> where
F: Unpin,
F: Unpin,
impl<F> UnwindSafe for NumberPrefix<F> where
F: UnwindSafe,
F: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,