Enum moore_vhdl_syntax::lexer::bundler::Bundle [] [src]

pub enum Bundle {
    Letters(String),
    Digits(String),
    Special(char),
    StringLiteral(String),
    BitLiteral(char),
    ExtendedIdent(String),
    Space,
    Comment,
}

A bundle of characters. These are the most fundamental groups of characters as per the VHDL standard. Lexical analysis will aggregate one or more of these into more meaningful tokens.

Variants

Methods

impl Bundle
[src]

[src]

Check whether the bundle has syntactic significance, i.e. is not a comment or space.

Trait Implementations

impl Debug for Bundle
[src]

[src]

Formats the value using the given formatter.

impl Clone for Bundle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Bundle
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Bundle
[src]