[][src]Struct fts_units::si_system::SIExponentsT

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

Holds type exponents for each si_system dimension.

Trait Implementations

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

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

impl<L, M, T> SIExponents for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

type Length = L

type Mass = M

type Time = T

impl<L: Eq, M: Eq, T: Eq> Eq for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

impl<L: PartialEq, M: PartialEq, T: PartialEq> PartialEq<SIExponentsT<L, M, T>> for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

impl<L: Copy, M: Copy, T: Copy> Copy for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

impl<L: Clone, M: Clone, T: Clone> Clone for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

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

Performs copy-assignment from source. Read more

impl<L: Default, M: Default, T: Default> Default for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

impl<L: Debug, M: Debug, T: Debug> Debug for SIExponentsT<L, M, T> where
    L: Integer,
    M: Integer,
    T: Integer
[src]

impl<L0, M0, T0, L1, M1, T1> Sub<SIExponentsT<L1, M1, T1>> for SIExponentsT<L0, M0, T0> where
    L0: Integer + Sub<L1>,
    M0: Integer + Sub<M1>,
    T0: Integer + Sub<T1>,
    L1: Integer,
    M1: Integer,
    T1: Integer,
    SubOutput<L0, L1>: Integer,
    SubOutput<M0, M1>: Integer,
    SubOutput<T0, T1>: Integer
[src]

type Output = SIExponentsT<Diff<L0, L1>, Diff<M0, M1>, Diff<T0, T1>>

The resulting type after applying the - operator.

impl<L0, M0, T0, L1, M1, T1> Add<SIExponentsT<L1, M1, T1>> for SIExponentsT<L0, M0, T0> where
    L0: Integer + Add<L1>,
    M0: Integer + Add<M1>,
    T0: Integer + Add<T1>,
    L1: Integer,
    M1: Integer,
    T1: Integer,
    AddOutput<L0, L1>: Integer,
    AddOutput<M0, M1>: Integer,
    AddOutput<T0, T1>: Integer
[src]

type Output = SIExponentsT<Sum<L0, L1>, Sum<M0, M1>, Sum<T0, T1>>

The resulting type after applying the + operator.

Auto Trait Implementations

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

impl<L, M, T> Sync for SIExponentsT<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> 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> Same<T> for T[src]

type Output = T

Should always be Self