Struct nom::Into[][src]

pub struct Into<F, O1, O2: From<O1>, E1, E2: From<E1>> { /* fields omitted */ }

Implementation of Parser::into

Trait Implementations

impl<'a, I: Clone, O1, O2: From<O1>, E1, E2: ParseError<I> + From<E1>, F: Parser<I, O1, E1>> Parser<I, O2, E2> for Into<F, O1, O2, E1, E2>[src]

Auto Trait Implementations

impl<F, O1, O2, E1, E2> Send for Into<F, O1, O2, E1, E2> where
    E1: Send,
    E2: Send,
    F: Send,
    O1: Send,
    O2: Send

impl<F, O1, O2, E1, E2> Sync for Into<F, O1, O2, E1, E2> where
    E1: Sync,
    E2: Sync,
    F: Sync,
    O1: Sync,
    O2: Sync

impl<F, O1, O2, E1, E2> Unpin for Into<F, O1, O2, E1, E2> where
    E1: Unpin,
    E2: Unpin,
    F: Unpin,
    O1: Unpin,
    O2: Unpin

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, 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.