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

pub trait Component_layout_valueContextAttrs<'input>: DesignParserContext<'input> + BorrowMut<Component_layout_valueContextExt<'input>> {
    fn DIGITS_IDENTIFIER(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... }
fn POSITION(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... }
fn STRING_LITERAL(
        &self
    ) -> Option<Rc<TerminalNode<'input, DesignParserContextType>>>
    where
        Self: Sized
, { ... } }

Provided methods

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

Expand description

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

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

Expand description

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

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

Loading content...

Implementors

Loading content...