[][src]Struct combine::parser::error::Unexpected

pub struct Unexpected<I, T, E>(_, _)
where
    I: Stream
;

Trait Implementations

impl<I: Clone, T: Clone, E: Clone> Clone for Unexpected<I, T, E> where
    I: Stream
[src]

impl<Input, T, E> Parser<Input> for Unexpected<Input, T, E> where
    Input: Stream,
    E: for<'s> ErrorInfo<'s, Input::Token, Input::Range>, 
[src]

type Output = T

The type which is returned if the parser is successful.

type PartialState = ()

Determines the state necessary to resume parsing after more input is supplied. Read more

Auto Trait Implementations

impl<I, T, E> RefUnwindSafe for Unexpected<I, T, E> where
    E: RefUnwindSafe

impl<I, T, E> Send for Unexpected<I, T, E> where
    E: Send

impl<I, T, E> Sync for Unexpected<I, T, E> where
    E: Sync

impl<I, T, E> Unpin for Unexpected<I, T, E> where
    E: Unpin

impl<I, T, E> UnwindSafe for Unexpected<I, T, E> where
    E: UnwindSafe

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<Input, P> EasyParser<Input> for P where
    Input: Stream,
    P: Parser<Stream<Input>> + ?Sized,
    <Input as StreamOnce>::Token: PartialEq<<Input as StreamOnce>::Token>,
    <Input as StreamOnce>::Range: PartialEq<<Input as StreamOnce>::Range>, 
[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, 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.