Struct ethcore_util::error::OutOfBounds [] [src]

pub struct OutOfBounds<T: Debug> {
    pub min: Option<T>,
    pub max: Option<T>,
    pub found: T,
}

Error indicating value found is outside of a valid range.

Fields

Minimum allowed value.

Maximum allowed value.

Value found.

Trait Implementations

impl<T: Debug + Debug> Debug for OutOfBounds<T>
[src]

Formats the value using the given formatter.

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter.