[][src]Struct fts_units::si_system::SIRatiosT

pub struct SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
{ /* fields omitted */ }

Holds type Ratios for each si_system dimension.

Trait Implementations

impl<L, M, T, E> ReduceWith<E> for SIRatiosT<L, M, T> where
    L: Ratio + ReduceWith<E::Length>,
    M: Ratio + ReduceWith<E::Mass>,
    T: Ratio + ReduceWith<E::Time>,
    E: SIExponents,
    ReduceWithOutput<L, E::Length>: Ratio + Default,
    ReduceWithOutput<M, E::Mass>: Ratio + Default,
    ReduceWithOutput<T, E::Time>: Ratio + Default
[src]

type Output = SIRatiosT<ReduceWithOutput<L, E::Length>, ReduceWithOutput<M, E::Mass>, ReduceWithOutput<T, E::Time>>

impl<L0, M0, T0, L1, M1, T1> Xor<SIRatiosT<L1, M1, T1>> for SIRatiosT<L0, M0, T0> where
    L0: Ratio + Xor<L1>,
    M0: Ratio + Xor<M1>,
    T0: Ratio + Xor<T1>,
    L1: Ratio,
    M1: Ratio,
    T1: Ratio,
    XorOutput<L0, L1>: Ratio + Default,
    XorOutput<M0, M1>: Ratio + Default,
    XorOutput<T0, T1>: Ratio + Default
[src]

type Output = SIRatiosT<XorOutput<L0, L1>, XorOutput<M0, M1>, XorOutput<T0, T1>>

impl<L, M, T> SIRatios for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

type Length = L

type Mass = M

type Time = T

impl<L: Eq, M: Eq, T: Eq> Eq for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

impl<L: Clone, M: Clone, T: Clone> Clone for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

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

Performs copy-assignment from source. Read more

impl<L: PartialEq, M: PartialEq, T: PartialEq> PartialEq<SIRatiosT<L, M, T>> for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

impl<L: Copy, M: Copy, T: Copy> Copy for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

impl<L: Default, M: Default, T: Default> Default for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

impl<L: Debug, M: Debug, T: Debug> Debug for SIRatiosT<L, M, T> where
    L: Ratio,
    M: Ratio,
    T: Ratio
[src]

Auto Trait Implementations

impl<L, M, T> Send for SIRatiosT<L, M, T> where
    L: Send,
    M: Send,
    T: Send

impl<L, M, T> Sync for SIRatiosT<L, M, T> where
    L: Sync,
    M: Sync,
    T: Sync

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

type Output = T

Should always be Self