[][src]Struct percentage::PercentageInteger

pub struct PercentageInteger { /* fields omitted */ }

Methods

impl PercentageInteger[src]

pub fn apply_to<T: Num + Ord + Copy + NumCast>(&self, value: T) -> T[src]

Returns the percentage applied to the number given.

Arguments

  • value - The number to apply the percentage.

Examples

use percentage::Percentage;

let number = 90;
let percentage = Percentage::from(50);

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

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

Returns the percentage saved.

Examples

use percentage::Percentage;

let percentage = Percentage::from(50);

assert_eq!(50, 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]