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
Letters(String)
Digits(String)
Special(char)
StringLiteral(String)
BitLiteral(char)
ExtendedIdent(String)
Space
Comment
Methods
impl Bundle
[src]
fn is_significant(&self) -> bool
[src]
Check whether the bundle has syntactic significance, i.e. is not a comment or space.
Trait Implementations
impl Debug for Bundle
[src]
impl Clone for Bundle
[src]
fn clone(&self) -> Bundle
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for Bundle
[src]
fn eq(&self, __arg_0: &Bundle) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Bundle) -> bool
[src]
This method tests for !=
.