[][src]Struct nom::FlatMap

pub struct FlatMap<F, G, O1> { /* fields omitted */ }

Implementation of Parser::flat_map

Trait Implementations

impl<'a, I, O1, O2, E, F: Parser<I, O1, E>, G: Fn(O1) -> H, H: Parser<I, O2, E>> Parser<I, O2, E> for FlatMap<F, G, O1>[src]

Auto Trait Implementations

impl<F, G, O1> RefUnwindSafe for FlatMap<F, G, O1> where
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    O1: RefUnwindSafe

impl<F, G, O1> Send for FlatMap<F, G, O1> where
    F: Send,
    G: Send,
    O1: Send

impl<F, G, O1> Sync for FlatMap<F, G, O1> where
    F: Sync,
    G: Sync,
    O1: Sync

impl<F, G, O1> Unpin for FlatMap<F, G, O1> where
    F: Unpin,
    G: Unpin,
    O1: Unpin

impl<F, G, O1> UnwindSafe for FlatMap<F, G, O1> where
    F: UnwindSafe,
    G: UnwindSafe,
    O1: 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<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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.