Struct unexpected::Mismatch[][src]

pub struct Mismatch<T> {
    pub expected: T,
    pub found: T,
}

Error indicating an expected value was not found.

Fields

Value expected.

Value found.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl<T: Display> Display for Mismatch<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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