[−][src]Struct num::rational::Ratio
Represents the ratio between two numbers.
Implementations
impl<T> Ratio<T>
[src][−]
These method are const
for Rust 1.31 and later.
pub const fn new_raw(numer: T, denom: T) -> Ratio<T>
[src][−]
Creates a Ratio
without checking for denom == 0
or reducing.
pub const fn numer(&self) -> &T
[src][−]
Gets an immutable reference to the numerator.
pub const fn denom(&self) -> &T
[src][−]
Gets an immutable reference to the denominator.
impl<T> Ratio<T> where
T: Clone + Integer,
[src][−]
T: Clone + Integer,
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 to_integer(&self) -> T
[src][−]
Converts to an integer, rounding towards zero.
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][−]
T: Clone + Integer + Pow<u32, Output = T>,
impl Ratio<BigInt>
[src][−]
pub fn from_float<T>(f: T) -> Option<Ratio<BigInt>> where
T: FloatCore,
[src][−]
T: FloatCore,
Converts a float into a rational number.
impl<T> Ratio<T> where
T: Clone + Integer + Bounded + NumCast + Signed,
[src][−]
T: Clone + Integer + Bounded + NumCast + Signed,
Trait Implementations
impl<'a, T> Add<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Add<&'a T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Add<&'b Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Add<&'b T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Add<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Add<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Add<T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Add<T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> AddAssign<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<'a, T> AddAssign<&'a T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> AddAssign<Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> AddAssign<T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> CheckedAdd for Ratio<T> where
T: Clone + Integer + CheckedAdd + CheckedMul,
[src][+]
T: Clone + Integer + CheckedAdd + CheckedMul,
impl<T> CheckedDiv for Ratio<T> where
T: Clone + Integer + CheckedMul,
[src][+]
T: Clone + Integer + CheckedMul,
impl<T> CheckedMul for Ratio<T> where
T: Clone + Integer + CheckedMul,
[src][+]
T: Clone + Integer + CheckedMul,
impl<T> CheckedSub for Ratio<T> where
T: Clone + Integer + CheckedSub + CheckedMul,
[src][+]
T: Clone + Integer + CheckedSub + CheckedMul,
impl<T> Clone for Ratio<T> where
T: Clone,
[src][+]
T: Clone,
impl<T> Copy for Ratio<T> where
T: Copy,
[src]
T: Copy,
impl<T> Debug for Ratio<T> where
T: Debug,
[src][+]
T: Debug,
impl<T> Display for Ratio<T> where
T: Display + Eq + One,
[src][+]
T: Display + Eq + One,
impl<'a, T> Div<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Div<&'a T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Div<&'b Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Div<&'b T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Div<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Div<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Div<T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Div<T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> DivAssign<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<'a, T> DivAssign<&'a T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> DivAssign<Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> DivAssign<T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> Eq for Ratio<T> where
T: Clone + Integer,
[src]
T: Clone + Integer,
impl<T> From<(T, T)> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> From<T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl FromPrimitive for Ratio<u32>
[src][+]
impl FromPrimitive for Ratio<i8>
[src][+]
impl FromPrimitive for Ratio<i16>
[src][+]
impl FromPrimitive for Ratio<u64>
[src][+]
impl FromPrimitive for Ratio<BigInt>
[src][+]
impl FromPrimitive for Ratio<i32>
[src][+]
impl FromPrimitive for Ratio<isize>
[src][+]
impl FromPrimitive for Ratio<usize>
[src][+]
impl FromPrimitive for Ratio<u128>
[src][+]
impl FromPrimitive for Ratio<i64>
[src][+]
impl FromPrimitive for Ratio<u16>
[src][+]
impl FromPrimitive for Ratio<i128>
[src][+]
impl FromPrimitive for Ratio<u8>
[src][+]
impl<T> FromStr for Ratio<T> where
T: Clone + FromStr + Integer,
[src][+]
T: Clone + FromStr + Integer,
impl<T> Hash for Ratio<T> where
T: Clone + Hash + Integer,
[src][+]
T: Clone + Hash + Integer,
impl<T> Into<(T, T)> for Ratio<T>
[src][+]
impl<T> Inv for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Inv for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Mul<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Mul<&'a T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Mul<&'b Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Mul<&'b T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Mul<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Mul<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Mul<T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Mul<T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> MulAssign<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<'a, T> MulAssign<&'a T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> MulAssign<Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> MulAssign<T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> Neg for Ratio<T> where
T: Clone + Integer + Neg<Output = T>,
[src][+]
T: Clone + Integer + Neg<Output = T>,
impl<'a, T> Neg for &'a Ratio<T> where
T: Clone + Integer + Neg<Output = T>,
[src][+]
T: Clone + Integer + Neg<Output = T>,
impl<T> Num for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> One for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Ord for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> PartialEq<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> PartialOrd<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Pow<&'a i16> for Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, 'b, T> Pow<&'a i16> for &'b Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, 'b, T> Pow<&'a i32> for &'b Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<'a, T> Pow<&'a i32> for Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<'a, 'b, T> Pow<&'a i64> for &'b Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<'a, T> Pow<&'a i64> for Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<'a, T> Pow<&'a i8> for Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<'a, 'b, T> Pow<&'a i8> for &'b Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<'a, T> Pow<&'a isize> for Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<'a, 'b, T> Pow<&'a isize> for &'b Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<'a, 'b, T> Pow<&'a u16> for &'b Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, T> Pow<&'a u16> for Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, 'b, T> Pow<&'a u32> for &'b Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<'a, T> Pow<&'a u32> for Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<'a, 'b, T> Pow<&'a u64> for &'b Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<'a, T> Pow<&'a u64> for Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<'a, 'b, T> Pow<&'a u8> for &'b Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<'a, T> Pow<&'a u8> for Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<'a, 'b, T> Pow<&'a usize> for &'b Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<'a, T> Pow<&'a usize> for Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<T> Pow<i16> for Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, T> Pow<i16> for &'a Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, T> Pow<i32> for &'a Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<T> Pow<i32> for Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<'a, T> Pow<i64> for &'a Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<T> Pow<i64> for Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<'a, T> Pow<i8> for &'a Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<T> Pow<i8> for Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<T> Pow<isize> for Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<'a, T> Pow<isize> for &'a Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<'a, T> Pow<u16> for &'a Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<T> Pow<u16> for Ratio<T> where
T: Clone + Integer + Pow<u16, Output = T>,
[src][+]
T: Clone + Integer + Pow<u16, Output = T>,
impl<'a, T> Pow<u32> for &'a Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<T> Pow<u32> for Ratio<T> where
T: Clone + Integer + Pow<u32, Output = T>,
[src][+]
T: Clone + Integer + Pow<u32, Output = T>,
impl<'a, T> Pow<u64> for &'a Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<T> Pow<u64> for Ratio<T> where
T: Clone + Integer + Pow<u64, Output = T>,
[src][+]
T: Clone + Integer + Pow<u64, Output = T>,
impl<'a, T> Pow<u8> for &'a Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<T> Pow<u8> for Ratio<T> where
T: Clone + Integer + Pow<u8, Output = T>,
[src][+]
T: Clone + Integer + Pow<u8, Output = T>,
impl<'a, T> Pow<usize> for &'a Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<T> Pow<usize> for Ratio<T> where
T: Clone + Integer + Pow<usize, Output = T>,
[src][+]
T: Clone + Integer + Pow<usize, Output = T>,
impl<'a, T> Product<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Product<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Rem<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Rem<&'a T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Rem<&'b Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Rem<&'b T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Rem<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Rem<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Rem<T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Rem<T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> RemAssign<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<'a, T> RemAssign<&'a T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> RemAssign<Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> RemAssign<T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> Signed for Ratio<T> where
T: Clone + Integer + Signed,
[src][+]
T: Clone + Integer + Signed,
impl<'a, T> Sub<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Sub<&'a T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Sub<&'b Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, 'b, T> Sub<&'b T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Sub<Ratio<T>> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Sub<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> Sub<T> for &'a Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Sub<T> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<'a, T> SubAssign<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<'a, T> SubAssign<&'a T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> SubAssign<Ratio<T>> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<T> SubAssign<T> for Ratio<T> where
T: Clone + Integer + NumAssign,
[src][+]
T: Clone + Integer + NumAssign,
impl<'a, T> Sum<&'a Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Sum<Ratio<T>> for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
impl<T> Zero for Ratio<T> where
T: Clone + Integer,
[src][+]
T: Clone + Integer,
Auto Trait Implementations
impl<T> RefUnwindSafe for Ratio<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Ratio<T> where
T: Send,
T: Send,
impl<T> Sync for Ratio<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Ratio<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Ratio<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> NumAssign for T where
T: Num + NumAssignOps<T>,
[src]
T: Num + NumAssignOps<T>,
impl<T, Rhs> NumAssignOps<Rhs> for T where
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
[src]
T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,
impl<T> NumAssignRef for T where
T: NumAssign + for<'r> NumAssignOps<&'r T>,
[src]
T: NumAssign + for<'r> NumAssignOps<&'r T>,
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]
T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,
impl<T> NumRef for T where
T: Num + for<'r> NumOps<&'r T, T>,
[src]
T: Num + for<'r> NumOps<&'r T, T>,
impl<T, Base> RefNum<Base> for T where
T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,
[src]
T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,