[][src]Struct lark_parser::syntax::guard::Guard

pub struct Guard<G, V>(pub G, pub V);

If the "guard" G is present, parse the "value" V. The resulting data is the data from the value V; the guard is ignored.

Example: -> Ty parses the value Ty only if the guard -> is present.

Trait Implementations

impl<G, V, 'parse> Syntax<'parse> for Guard<G, V> where
    G: NonEmptySyntax<'parse>,
    V: Syntax<'parse>, 
[src]

type Data = V::Data

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

impl<G: DebugWith, V: DebugWith> DebugWith for Guard<G, V>[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<G, V> Send for Guard<G, V> where
    G: Send,
    V: Send

impl<G, V> Sync for Guard<G, V> where
    G: Sync,
    V: 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