#[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)
UnterminatedBlockComment
UnterminatedStringLiteral
UnterminatedStringGap
InvalidEscapeSequence(char)
StraySingleQuote
CharacterLiteralWrongLength
HexLiteralMissingDigits
DecimalExponentMissingDigits
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