[][src]Struct dangerous::error::ExpectedValid

pub struct ExpectedValid<'i> { /* fields omitted */ }

An error representing a failed requirement for a valid Input.

Implementations

impl<'i> ExpectedValid<'i>[src]

pub fn input(&self) -> &'i Input[src]

The Input provided in the context when the error occurred.

pub fn context(&self) -> ExpectedContext[src]

The ExpectedContext around the error.

pub fn span(&self) -> &'i Input[src]

The specific part of the Input that did not meet the requirement.

pub fn expected(&self) -> &'static str[src]

A description of what was expected.

Trait Implementations

impl<'i> Clone for ExpectedValid<'i>[src]

impl<'i> Debug for ExpectedValid<'i>[src]

impl<'i> Display for ExpectedValid<'i>[src]

impl<'i, S> From<ExpectedValid<'i>> for Expected<'i, S> where
    S: ContextStackBuilder
[src]

impl<'i> From<ExpectedValid<'i>> for Invalid[src]

impl<'i> ToRetryRequirement for ExpectedValid<'i>[src]

Auto Trait Implementations

impl<'i> RefUnwindSafe for ExpectedValid<'i>

impl<'i> Send for ExpectedValid<'i>

impl<'i> Sync for ExpectedValid<'i>

impl<'i> Unpin for ExpectedValid<'i>

impl<'i> UnwindSafe for ExpectedValid<'i>

Blanket Implementations

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

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

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

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

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.