Struct matrixcompare::ElementsMismatch[][src]

pub struct ElementsMismatch<T, Error> {
    pub comparator_description: String,
    pub mismatches: Vec<MatrixElementComparisonFailure<T, Error>>,
}

Fields

comparator_description: Stringmismatches: Vec<MatrixElementComparisonFailure<T, Error>>

Trait Implementations

impl<T: Clone, Error: Clone> Clone for ElementsMismatch<T, Error>[src]

impl<T: Debug, Error: Debug> Debug for ElementsMismatch<T, Error>[src]

impl<T, Error> Display for ElementsMismatch<T, Error> where
    T: Display,
    Error: Display
[src]

impl<T: PartialEq, Error: PartialEq> PartialEq<ElementsMismatch<T, Error>> for ElementsMismatch<T, Error>[src]

impl<T, Error> StructuralPartialEq for ElementsMismatch<T, Error>[src]

Auto Trait Implementations

impl<T, Error> RefUnwindSafe for ElementsMismatch<T, Error> where
    Error: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, Error> Send for ElementsMismatch<T, Error> where
    Error: Send,
    T: Send

impl<T, Error> Sync for ElementsMismatch<T, Error> where
    Error: Sync,
    T: Sync

impl<T, Error> Unpin for ElementsMismatch<T, Error> where
    Error: Unpin,
    T: Unpin

impl<T, Error> UnwindSafe for ElementsMismatch<T, Error> where
    Error: UnwindSafe,
    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<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> ToString for T where
    T: Display + ?Sized
[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.