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

pub trait Component_use_name_valueContextAttrs<'input>: DesignParserContext<'input> {
    fn component_name(&self) -> Option<Rc<Component_nameContextAll<'input>>>
    where
        Self: Sized
, { ... }
fn LPAREN(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... }
fn component_layout_value(
        &self
    ) -> Option<Rc<Component_layout_valueContextAll<'input>>>
    where
        Self: Sized
, { ... }
fn RPAREN(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... } }

Provided methods

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

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

Expand description

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

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

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

Expand description

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

Loading content...

Implementors

Loading content...