Trait unflow::grammar::designparser::Show_actionContextAttrs[][src]

pub trait Show_actionContextAttrs<'input>: DesignParserContext<'input> + BorrowMut<Show_actionContextExt<'input>> {
    fn SHOW_KEY(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... }
fn STRING_LITERAL(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... }
fn DOT(&self) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... }
fn component_name(&self) -> Option<Rc<Component_nameContextAll<'input>>>
    where
        Self: Sized
, { ... } }

Provided methods

fn SHOW_KEY(&self) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>> where
    Self: Sized
[src]

Expand description

Retrieves first TerminalNode corresponding to token SHOW_KEY Returns None if there is no child corresponding to token SHOW_KEY

fn STRING_LITERAL(
    &self
) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>> where
    Self: Sized
[src]

Expand description

Retrieves first TerminalNode corresponding to token STRING_LITERAL Returns None if there is no child corresponding to token STRING_LITERAL

fn DOT(&self) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>> where
    Self: Sized
[src]

Expand description

Retrieves first TerminalNode corresponding to token DOT Returns None if there is no child corresponding to token DOT

fn component_name(&self) -> Option<Rc<Component_nameContextAll<'input>>> where
    Self: Sized
[src]

Loading content...

Implementors

impl<'input> Show_actionContextAttrs<'input> for Show_actionContext<'input>[src]

Loading content...