#[non_exhaustive]pub enum LexErrorKind {
UnexpectedCharacter(char),
UnterminatedBlockComment,
UnterminatedStringLiteral,
UnterminatedStringGap,
InvalidEscapeSequence(char),
StraySingleQuote,
CharacterLiteralWrongLength,
HexLiteralMissingDigits,
DecimalExponentMissingDigits,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UnexpectedCharacter(char)
A character could not begin or continue any token.
UnterminatedBlockComment
A nested block comment reached EOF before -}.
UnterminatedStringLiteral
A string literal reached EOF or newline before its closing quote.
UnterminatedStringGap
A string gap was opened but not closed correctly.
InvalidEscapeSequence(char)
A string or character escape used an unsupported escape code.
StraySingleQuote
A single quote did not form a valid character literal.
CharacterLiteralWrongLength
A character literal decoded to zero or multiple Unicode scalar values.
HexLiteralMissingDigits
A 0x/0X literal prefix was not followed by a hexadecimal digit.
DecimalExponentMissingDigits
A decimal exponent marker was not followed by exponent digits.
Trait Implementations§
Source§impl Clone for LexErrorKind
impl Clone for LexErrorKind
Source§fn clone(&self) -> LexErrorKind
fn clone(&self) -> LexErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LexErrorKind
impl Debug for LexErrorKind
Source§impl Display for LexErrorKind
impl Display for LexErrorKind
impl Eq for LexErrorKind
Source§impl PartialEq for LexErrorKind
impl PartialEq for LexErrorKind
Source§fn eq(&self, other: &LexErrorKind) -> bool
fn eq(&self, other: &LexErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LexErrorKind
Auto Trait Implementations§
impl Freeze for LexErrorKind
impl RefUnwindSafe for LexErrorKind
impl Send for LexErrorKind
impl Sync for LexErrorKind
impl Unpin for LexErrorKind
impl UnsafeUnpin for LexErrorKind
impl UnwindSafe for LexErrorKind
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