[][src]Struct val_unc::unc::Unc

pub struct Unc<T>(pub T);

An example implementation of an uncertatinty type

Trait Implementations

impl<T: Clone> Clone for Unc<T>[src]

impl<T: Copy> Copy for Unc<T>[src]

impl<T: Debug> Debug for Unc<T>[src]

impl<T: Default> Default for Unc<T>[src]

impl<T, U> Div<T> for Unc<U> where
    U: Div<T, Output = U>, 
[src]

type Output = Self

The resulting type after applying the / operator.

impl<T: Eq> Eq for Unc<T>[src]

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

impl<T: Hash> Hash for Unc<T>[src]

impl<T, U> Mul<T> for Unc<U> where
    U: Mul<T, Output = U>, 
[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Ord> Ord for Unc<T>[src]

impl<T: PartialEq> PartialEq<Unc<T>> for Unc<T>[src]

impl<T: PartialOrd> PartialOrd<Unc<T>> for Unc<T>[src]

impl<T> StructuralEq for Unc<T>[src]

impl<T> StructuralPartialEq for Unc<T>[src]

impl<V, U> UncAdd<V> for Unc<U> where
    U: Pow<u8, Output = U> + Sqrt + Add<U, Output = U>, 
[src]

impl<V, U> UncDiv<V> for Unc<U> where
    U: Pow<u8, Output = U> + Sqrt + Add<U, Output = U> + Div<V, Output = U> + Mul<V, Output = U>,
    V: Clone
[src]

impl<V, U> UncMul<V> for Unc<U> where
    U: Pow<u8, Output = U> + Sqrt + Add<U, Output = U> + Div<V, Output = U> + Mul<V, Output = U>,
    V: Clone
[src]

impl<V, U> UncSub<V> for Unc<U> where
    U: Pow<u8, Output = U> + Sqrt + Add<U, Output = U>, 
[src]

impl<T> UncZero for Unc<T> where
    T: Zero
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Unc<T> where
    T: RefUnwindSafe

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

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

impl<T> Unpin for Unc<T> where
    T: Unpin

impl<T> UnwindSafe for Unc<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<!> for T[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.