[][src]Struct range_check::OutOfRangeError

pub struct OutOfRangeError<T> {
    pub allowed_range: Bounds<T>,
    pub outside_value: T,
}

The error that gets thrown when a check_range fails.

Fields

allowed_range: Bounds<T>

The bounds of the range that was searched.

outside_value: T

The value that lies outside of the range.

Methods

impl<T> OutOfRangeError<T>[src]

pub fn generify<U: From<T>>(self) -> OutOfRangeError<U>[src]

Converts this error to an error with the same values as another type. The other type must be From-convertible from this one.

Examples

use range_check::{Check, OutOfRangeError};

let err: OutOfRangeError<i16> = 24680.check_range(1..9999).unwrap_err();
let err: OutOfRangeError<i32> = err.generify();

Trait Implementations

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

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

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

impl<T: Debug> Display for OutOfRangeError<T>[src]

impl<T> StructuralPartialEq for OutOfRangeError<T>[src]

impl<T: Debug> Error for OutOfRangeError<T>[src]

Auto Trait Implementations

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

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

impl<T> Unpin for OutOfRangeError<T> where
    T: Unpin

impl<T> UnwindSafe for OutOfRangeError<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for OutOfRangeError<T> where
    T: RefUnwindSafe

Blanket Implementations

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 = !

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]