pub enum LexErrorKind {
InvalidDigit {
digit: char,
radix: u32,
token: String,
},
CouldNotLex {
content: String,
},
BidiOverride,
}Expand description
The kind of lexer error, carrying any structured data needed for diagnostics.
Variants§
InvalidDigit
A digit was invalid for the given radix (e.g. 9 in an octal literal).
CouldNotLex
A token could not be lexed at all.
BidiOverride
A Unicode bidi override code point was encountered.
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 · 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 PartialEq for LexErrorKind
impl PartialEq for LexErrorKind
impl Eq for LexErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more