[][src]Struct gobble::combi::Wrap

pub struct Wrap<A, B, VA, VB> { /* fields omitted */ }

Trait Implementations

impl<A: Clone, B: Clone, VA: Clone, VB: Clone> Clone for Wrap<A, B, VA, VB>[src]

impl<A, B, VA, VB> Parser<VB> for Wrap<A, B, VA, VB> where
    A: Parser<VA>,
    B: Parser<VB>, 
[src]

Auto Trait Implementations

impl<A, B, VA, VB> RefUnwindSafe for Wrap<A, B, VA, VB> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    VA: RefUnwindSafe,
    VB: RefUnwindSafe

impl<A, B, VA, VB> Send for Wrap<A, B, VA, VB> where
    A: Send,
    B: Send,
    VA: Send,
    VB: Send

impl<A, B, VA, VB> Sync for Wrap<A, B, VA, VB> where
    A: Sync,
    B: Sync,
    VA: Sync,
    VB: Sync

impl<A, B, VA, VB> Unpin for Wrap<A, B, VA, VB> where
    A: Unpin,
    B: Unpin,
    VA: Unpin,
    VB: Unpin

impl<A, B, VA, VB> UnwindSafe for Wrap<A, B, VA, VB> where
    A: UnwindSafe,
    B: UnwindSafe,
    VA: UnwindSafe,
    VB: 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<V, F> Parser<V> for F where
    F: for<'a> Fn(&LCChars<'a>) -> Result<(LCChars<'a>, V), ParseError>, 
[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.