[][src]Struct percentage::PercentageDecimal

pub struct PercentageDecimal { /* fields omitted */ }

Methods

impl PercentageDecimal[src]

pub fn apply_to(&self, value: f64) -> f64[src]

Returns the percentage applied to the f64 given.

Arguments

  • value - The number to apply the percentage.

Examples

use percentage::Percentage;

let number = 90.0;
let percentage = Percentage::from_decimal(0.5);

assert_eq!(45.0, percentage.apply_to(number));

pub fn value(&self) -> f64[src]

Returns the percentage saved.

Examples

use percentage::Percentage;

let percentage = Percentage::from_decimal(0.5);

assert_eq!(0.5, percentage.value());

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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