Struct embedded_time::fraction::Fraction[][src]

pub struct Fraction(_);
Expand description

A fractional value

Used primarily to define the scaling factor for the Duration, Rate, Instant and Clock traits and types.

Implementations

impl Fraction[src]

pub const fn new(numerator: u32, denominator: u32) -> Self[src]

Construct a new Fraction.

A reduction is not performed. Also there is no check for a denominator of 0. If these features are needed, use Fraction::new_reduce()

pub const fn numerator(&self) -> &u32[src]

Return the numerator of the fraction

pub const fn denominator(&self) -> &u32[src]

Return the denominator of the fraction

impl Fraction[src]

pub fn new_reduce(
    numerator: u32,
    denominator: u32
) -> Result<Self, ConversionError>
[src]

Construct a new Fraction.

A reduction and denominator == 0 check are performed.

Errors

ConversionError::DivByZero : A 0 denominator was detected

pub fn to_integer(&self) -> u32[src]

Returns the value truncated to an integer

pub fn from_integer(value: u32) -> Self[src]

Constructs a Fraction from an integer.

Equivalent to Fraction::new(value,1).

pub fn recip(self) -> Self[src]

Returns the reciprocal of the fraction

pub fn checked_mul(&self, v: &Self) -> Option<Self>[src]

Checked Fraction × Fraction = Fraction

Returns None for any errors

Examples

assert_eq!(Fraction::new(1000, 1).checked_mul(&Fraction::new(5,5)),
    Some(Fraction::new(5_000, 5)));

assert_eq!(Fraction::new(u32::MAX, 1).checked_mul(&Fraction::new(2,1)),
    None);

pub fn checked_div(&self, v: &Self) -> Option<Self>[src]

Checked Fraction / Fraction = Fraction

Returns None for any errors

Examples

assert_eq!(Fraction::new(1000, 1).checked_div(&Fraction::new(10, 1000)),
    Some(Fraction::new(1_000_000, 10)));

assert_eq!(Fraction::new(1, u32::MAX).checked_div(&Fraction::new(2,1)),
    None);

Trait Implementations

impl Clone for Fraction[src]

fn clone(&self) -> Fraction[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Fraction[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Fraction[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Div<Fraction> for Fraction[src]

fn div(self, rhs: Self) -> Self::Output[src]

Panicky Fraction / Fraction = Fraction

Panics

The same reason the integer operation would panic. Namely, if the result overflows the type.

type Output = Self

The resulting type after applying the / operator.

impl Hash for Fraction[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Mul<Fraction> for Fraction[src]

fn mul(self, rhs: Self) -> Self::Output[src]

Panicky Fraction × Fraction = Fraction

Panics

The same reason the integer operation would panic. Namely, if the result overflows the type.

type Output = Self

The resulting type after applying the * operator.

impl Ord for Fraction[src]

fn cmp(&self, other: &Fraction) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<Fraction> for Fraction[src]

fn eq(&self, other: &Fraction) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Fraction) -> bool[src]

This method tests for !=.

impl PartialOrd<Fraction> for Fraction[src]

fn partial_cmp(&self, other: &Fraction) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Copy for Fraction[src]

impl Eq for Fraction[src]

impl StructuralEq for Fraction[src]

impl StructuralPartialEq for Fraction[src]

Auto Trait Implementations

impl Send for Fraction

impl Sync for Fraction

impl Unpin for Fraction

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.