[][src]Struct mop_blocks::Pct

pub struct Pct(_);

A percent from 0u16 to 100u16.

Arithmetic operations won't result in values greater than u16::MAX.

Implementations

impl Pct[src]

pub fn from_percent(pct: u16) -> Self[src]

From percent representation (0 to 100).

Values greater than 100 will be truncated to 100.

Example

use mop_blocks::Pct;
assert_eq!(*Pct::from_percent(40), 40);

Trait Implementations

impl AsRef<u16> for Pct[src]

impl Clone for Pct[src]

impl Copy for Pct[src]

impl Debug for Pct[src]

impl Deref for Pct[src]

type Target = u16

The resulting type after dereferencing.

impl<T> Mul<T> for Pct where
    T: Div<T, Output = T> + From<u16> + SaturatingMul
[src]

Example

use mop_blocks::Pct;
assert_eq!(Pct::from_percent(20) * 10, 2);

type Output = T

The resulting type after applying the * operator.

Auto Trait Implementations

impl Send for Pct

impl Sync for Pct

impl Unpin for Pct

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> TraitCfg 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.