pub enum SegmentedTokenKind {
AlphaNumeric,
Separator,
Symbol,
}Expand description
What kind of content to expect from a SegmentedToken.
Variants§
AlphaNumeric
The token is a collection of any kind of letters and numbers
Separator
The token is some kind of seperator
Symbol
The token represents a symbol
Trait Implementations§
Source§impl Clone for SegmentedTokenKind
impl Clone for SegmentedTokenKind
Source§fn clone(&self) -> SegmentedTokenKind
fn clone(&self) -> SegmentedTokenKind
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SegmentedTokenKind
impl Debug for SegmentedTokenKind
impl Copy for SegmentedTokenKind
Auto Trait Implementations§
impl Freeze for SegmentedTokenKind
impl RefUnwindSafe for SegmentedTokenKind
impl Send for SegmentedTokenKind
impl Sync for SegmentedTokenKind
impl Unpin for SegmentedTokenKind
impl UnwindSafe for SegmentedTokenKind
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