[][src]Enum combine::error::Info

pub enum Info<T, R, F = &'static str> {
    Token(T),
    Range(R),
    Static(&'static str),
    Format(F),
}

Variants

Token(T)
Range(R)
Static(&'static str)
Format(F)

Trait Implementations

impl<'s, T, R, F> ErrorInfo<'s, T, R> for Info<T, R, F> where
    T: Clone,
    R: Clone,
    F: Display + 's, 
[src]

type Format = &'s F

impl<R, F> From<char> for Info<char, R, F>[src]

impl<T, R, F> From<&'static str> for Info<T, R, F>[src]

impl<R, F> From<u8> for Info<u8, R, F>[src]

impl<T, R> From<Token<T>> for Info<T, R, &'static str>[src]

impl<T, R> From<Range<R>> for Info<T, R, &'static str>[src]

impl<T, R, F> From<Static> for Info<T, R, F> where
    F: Display
[src]

impl<T, R, F> From<Format<F>> for Info<T, R, F> where
    F: Display
[src]

impl<T, R, F> From<Info<T, R, F>> for Info<T, R> where
    F: Display
[src]

impl<T: Clone, R: Clone, F: Clone> Clone for Info<T, R, F>[src]

impl<T: Debug, R: Debug, F: Debug> Debug for Info<T, R, F>[src]

Auto Trait Implementations

impl<T, R, F> Send for Info<T, R, F> where
    F: Send,
    R: Send,
    T: Send

impl<T, R, F> Sync for Info<T, R, F> where
    F: Sync,
    R: Sync,
    T: Sync

impl<T, R, F> Unpin for Info<T, R, F> where
    F: Unpin,
    R: Unpin,
    T: Unpin

impl<T, R, F> UnwindSafe for Info<T, R, F> where
    F: UnwindSafe,
    R: UnwindSafe,
    T: UnwindSafe

impl<T, R, F> RefUnwindSafe for Info<T, R, F> where
    F: RefUnwindSafe,
    R: RefUnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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]