pub enum Bundle {
Letters(String),
Digits(String),
Special(char),
StringLiteral(String),
BitLiteral(char),
ExtendedIdent(String),
Space,
Comment,
}Expand description
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
Implementations§
Trait Implementations§
impl Eq for Bundle
impl StructuralPartialEq for Bundle
Auto Trait Implementations§
impl Freeze for Bundle
impl RefUnwindSafe for Bundle
impl Send for Bundle
impl Sync for Bundle
impl Unpin for Bundle
impl UnwindSafe for Bundle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more