[][src]Struct kombi::combinators::Transform

pub struct Transform<Iter, A, F, T> where
    Iter: Iterator + Clone,
    A: Parser<Iter>,
    F: Fn(A::Output) -> Option<T>, 
{ /* fields omitted */ }

Trait Implementations

impl<Iter, A, F, T> Parser<Iter> for Transform<Iter, A, F, T> where
    Iter: Iterator + Clone,
    A: Parser<Iter>,
    F: Fn(A::Output) -> Option<T>, 
[src]

type Output = T

Auto Trait Implementations

impl<Iter, A, F, T> RefUnwindSafe for Transform<Iter, A, F, T> where
    A: RefUnwindSafe,
    F: RefUnwindSafe,
    Iter: RefUnwindSafe,
    T: RefUnwindSafe

impl<Iter, A, F, T> Send for Transform<Iter, A, F, T> where
    A: Send,
    F: Send,
    Iter: Send,
    T: Send

impl<Iter, A, F, T> Sync for Transform<Iter, A, F, T> where
    A: Sync,
    F: Sync,
    Iter: Sync,
    T: Sync

impl<Iter, A, F, T> Unpin for Transform<Iter, A, F, T> where
    A: Unpin,
    F: Unpin,
    Iter: Unpin,
    T: Unpin

impl<Iter, A, F, T> UnwindSafe for Transform<Iter, A, F, T> where
    A: UnwindSafe,
    F: UnwindSafe,
    Iter: UnwindSafe,
    T: 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> From<T> for T[src]

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

impl<Iter, F, T> Parser<Iter> for F where
    F: Fn(Iter) -> Option<(Iter, T)>,
    Iter: Iterator + Clone
[src]

type Output = 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.