[][src]Struct fraction::Ratio

pub struct Ratio<T> { /* fields omitted */ }

Represents the ratio between two numbers.

Methods

impl<T> Ratio<T> where
    T: Clone + Integer
[src]

pub fn new(numer: T, denom: T) -> Ratio<T>[src]

Creates a new Ratio. Fails if denom is zero.

pub fn from_integer(t: T) -> Ratio<T>[src]

Creates a Ratio representing the integer t.

pub fn new_raw(numer: T, denom: T) -> Ratio<T>[src]

Creates a Ratio without checking for denom == 0 or reducing.

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

Converts to an integer, rounding towards zero.

pub fn numer(&'a self) -> &'a T[src]

Gets an immutable reference to the numerator.

pub fn denom(&'a self) -> &'a T[src]

Gets an immutable reference to the denominator.

pub fn is_integer(&self) -> bool[src]

Returns true if the rational number is an integer (denominator is 1).

pub fn reduced(&self) -> Ratio<T>[src]

Returns a reduced copy of self.

In general, it is not necessary to use this method, as the only method of procuring a non-reduced fraction is through new_raw.

pub fn recip(&self) -> Ratio<T>[src]

Returns the reciprocal.

Fails if the Ratio is zero.

pub fn floor(&self) -> Ratio<T>[src]

Rounds towards minus infinity.

pub fn ceil(&self) -> Ratio<T>[src]

Rounds towards plus infinity.

pub fn round(&self) -> Ratio<T>[src]

Rounds to the nearest integer. Rounds half-way cases away from zero.

pub fn trunc(&self) -> Ratio<T>[src]

Rounds towards zero.

pub fn fract(&self) -> Ratio<T>[src]

Returns the fractional part of a number, with division rounded towards zero.

Satisfies self == self.trunc() + self.fract().

impl<T> Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

pub fn pow(&self, expon: i32) -> Ratio<T>[src]

Raises the Ratio to the power of an exponent.

impl Ratio<BigInt>[src]

pub fn from_float<T>(f: T) -> Option<Ratio<BigInt>> where
    T: FloatCore
[src]

Converts a float into a rational number.

impl<T> Ratio<T> where
    T: Clone + Integer + Bounded + NumCast + Signed
[src]

pub fn approximate_float<F>(f: F) -> Option<Ratio<T>> where
    F: NumCast + FloatCore
[src]

Trait Implementations

impl<'a, T> Inv for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Inv for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Hash for Ratio<T> where
    T: Clone + Hash + Integer
[src]

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<T> One for Ratio<T> where
    T: Clone + Integer
[src]

impl<T> Eq for Ratio<T> where
    T: Clone + Integer
[src]

impl<T> Num for Ratio<T> where
    T: Clone + Integer
[src]

type FromStrRadixErr = ParseRatioError

fn from_str_radix(s: &str, radix: u32) -> Result<Ratio<T>, ParseRatioError>[src]

Parses numer/denom where the numbers are in base radix.

impl<T> Product<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

impl<'a, T> Product<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

impl<'a, T> DivAssign<&'a T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> DivAssign<Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> DivAssign<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> DivAssign<T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> Signed for Ratio<T> where
    T: Clone + Integer + Signed
[src]

impl<'de, T> Deserialize<'de> for Ratio<T> where
    T: Deserialize<'de> + Clone + Integer + PartialOrd<T>, 
[src]

impl<T> Pow<u64> for Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a i64> for Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<isize> for &'a Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a u32> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a u8> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a u64> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<u16> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<i8> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<isize> for Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a isize> for &'b Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a u8> for Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a usize> for &'b Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<u16> for Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<i8> for Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a i8> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<u8> for Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a u32> for Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a i64> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<i64> for Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<usize> for Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a usize> for Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<u8> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a u16> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a u64> for Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a i32> for Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a isize> for Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<usize> for &'a Ratio<T> where
    T: Clone + Integer + Pow<usize, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<i16> for Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<i32> for Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a u16> for Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a i16> for Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> Pow<u32> for Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<i64> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<i16> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<&'a i8> for Ratio<T> where
    T: Clone + Integer + Pow<u8, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<i32> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<u32> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, T> Pow<u64> for &'a Ratio<T> where
    T: Clone + Integer + Pow<u64, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a i16> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u16, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<'a, 'b, T> Pow<&'a i32> for &'b Ratio<T> where
    T: Clone + Integer + Pow<u32, Output = T>, 
[src]

type Output = Ratio<T>

The result after applying the operator.

impl<T> PartialOrd<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

#[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<T> From<(T, T)> for Ratio<T> where
    T: Clone + Integer
[src]

impl<T> From<T> for Ratio<T> where
    T: Clone + Integer
[src]

impl<'a, 'b, T> Sub<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<'a, T> Sub<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<'a, 'b, T> Sub<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<'a, T> Sub<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<'a, T> Sub<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<T> Sub<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<T> Sub<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<'a, T> Sub<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<T> Serialize for Ratio<T> where
    T: Serialize + Clone + Integer + PartialOrd<T>, 
[src]

impl<T> Debug for Ratio<T> where
    T: Debug
[src]

impl<T> Clone for Ratio<T> where
    T: Clone
[src]

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

Performs copy-assignment from source. Read more

impl<T> CheckedMul for Ratio<T> where
    T: Clone + Integer + CheckedMul
[src]

impl<T> CheckedSub for Ratio<T> where
    T: Clone + Integer + CheckedSub + CheckedMul
[src]

impl<T> AddAssign<Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> AddAssign<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> AddAssign<T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> AddAssign<&'a T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> FromStr for Ratio<T> where
    T: Clone + FromStr + Integer
[src]

type Err = ParseRatioError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Ratio<T>, ParseRatioError>[src]

Parses numer/denom or just numer.

impl<T> Zero for Ratio<T> where
    T: Clone + Integer
[src]

impl<T> CheckedAdd for Ratio<T> where
    T: Clone + Integer + CheckedAdd + CheckedMul
[src]

impl<'a, T> Rem<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<'a, T> Rem<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<'a, 'b, T> Rem<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<'a, T> Rem<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<'a, 'b, T> Rem<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<T> Rem<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<'a, T> Rem<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<T> Rem<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the % operator.

impl<T> Display for Ratio<T> where
    T: Display + Eq + One
[src]

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

Renders as numer/denom. If denom=1, renders as numer.

impl<T> Into<(T, T)> for Ratio<T>[src]

impl<'a, T> Neg for &'a Ratio<T> where
    T: Clone + Integer + Neg<Output = T>, 
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<T> Neg for Ratio<T> where
    T: Clone + Integer + Neg<Output = T>, 
[src]

type Output = Ratio<T>

The resulting type after applying the - operator.

impl<T> Add<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, 'b, T> Add<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<T> Add<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, T> Add<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, 'b, T> Add<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, T> Add<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, T> Add<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, T> Add<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the + operator.

impl<'a, T> RemAssign<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> RemAssign<T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> RemAssign<&'a T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> RemAssign<Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> CheckedDiv for Ratio<T> where
    T: Clone + Integer + CheckedMul
[src]

impl<'a, T> Sum<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

impl<T> Sum<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

impl<T> SubAssign<Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> SubAssign<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> SubAssign<&'a T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> SubAssign<T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> PartialEq<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

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

This method tests for !=.

impl<'a, T> MulAssign<&'a T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> MulAssign<T> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<T> MulAssign<Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> MulAssign<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer + NumAssign
[src]

impl<'a, T> Div<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<'a, T> Div<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<'a, T> Div<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<'a, 'b, T> Div<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<T> Div<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<T> Div<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<'a, T> Div<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<'a, 'b, T> Div<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the / operator.

impl<T> Copy for Ratio<T> where
    T: Copy
[src]

impl<T> Ord for Ratio<T> where
    T: Clone + Integer
[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

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

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl FromPrimitive for Ratio<isize>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<i64>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<i32>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<u32>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<i8>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<BigInt>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<u128>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<i128>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<u16>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<u8>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<usize>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<i16>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl FromPrimitive for Ratio<u64>[src]

fn from_isize(n: isize) -> Option<Self>[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, then None is returned. Read more

fn from_i8(n: i8) -> Option<Self>[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i16(n: i16) -> Option<Self>[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_i32(n: i32) -> Option<Self>[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_usize(n: usize) -> Option<Self>[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u8(n: u8) -> Option<Self>[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u16(n: u16) -> Option<Self>[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

fn from_u32(n: u32) -> Option<Self>[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, then None is returned. Read more

impl<T> Mul<T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<T> Mul<Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<&'a Ratio<T>> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b Ratio<T>> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<&'a T> for Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<'a, 'b, T> Mul<&'b T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

impl<'a, T> Mul<T> for &'a Ratio<T> where
    T: Clone + Integer
[src]

type Output = Ratio<T>

The resulting type after applying the * operator.

Auto Trait Implementations

impl<T> Send for Ratio<T> where
    T: Send

impl<T> Sync for Ratio<T> where
    T: Sync

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?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, 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]

impl<T> NumRef for T where
    T: Num + NumOps<&'r T, T>, 
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[src]

impl<T> NumAssignRef for T where
    T: NumAssign + NumAssignOps<&'r T>, 
[src]

impl<T> NumAssign for T where
    T: Num + NumAssignOps<T>, 
[src]

impl<T, Base> RefNum<Base> for T where
    T: NumOps<Base, Base> + NumOps<&'r Base, Base>, 
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self