[][src]Struct lark_parser::syntax::delimited::Delimited

pub struct Delimited<D, T>(pub D, pub T);

Trait Implementations

impl<D, T, 'parse> Syntax<'parse> for Delimited<D, T> where
    D: Delimiter<'parse>,
    T: Syntax<'parse>, 
[src]

type Data = T::Data

The value that is produced (often, but not always, Self) by the parsing routine. Read more

impl<D, T, 'parse> NonEmptySyntax<'parse> for Delimited<D, T> where
    D: Delimiter<'parse>,
    T: Syntax<'parse>, 
[src]

impl<D: DebugWith, T: DebugWith> DebugWith for Delimited<D, T>[src]

fn debug_with<Cx>(&'me self, cx: &'me Cx) -> DebugCxPair<'me, &'me Self, Cx> where
    Cx: ?Sized
[src]

fn into_debug_with<Cx>(self, cx: &'me Cx) -> DebugCxPair<'me, Self, Cx> where
    Cx: ?Sized
[src]

Auto Trait Implementations

impl<D, T> Send for Delimited<D, T> where
    D: Send,
    T: Send

impl<D, T> Sync for Delimited<D, T> where
    D: Sync,
    T: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Erased for T