Struct unexpected::OutOfBounds[][src]

pub struct OutOfBounds<T> {
    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.

Methods

impl<T> OutOfBounds<T>
[src]

Trait Implementations

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

Formats the value using the given formatter. Read more

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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