Struct ethcore_util::error::Mismatch [] [src]

pub struct Mismatch<T: Debug> {
    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> Debug for Mismatch<T>
[src]

Formats the value using the given formatter.

impl<T: PartialEq + Debug> 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 + Debug> Eq for Mismatch<T>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter.