[][src]Struct simple_json2::parser::Concat

pub struct Concat<P, P2>(_);

Trait Implementations

impl<I: Input, P: Parser<I>, P2: Parser<I>> Parser<I> for Concat<P, P2>[src]

type Output = (P::Output, P2::Output)

Auto Trait Implementations

impl<P, P2> RefUnwindSafe for Concat<P, P2> where
    P: RefUnwindSafe,
    P2: RefUnwindSafe

impl<P, P2> Send for Concat<P, P2> where
    P: Send,
    P2: Send

impl<P, P2> Sync for Concat<P, P2> where
    P: Sync,
    P2: Sync

impl<P, P2> Unpin for Concat<P, P2> where
    P: Unpin,
    P2: Unpin

impl<P, P2> UnwindSafe for Concat<P, P2> where
    P: UnwindSafe,
    P2: 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<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.