pub enum SyntaxErrorKind {
    EmptyInput,
    TrailingCharacters,
    ConsecutiveUnderscoreInNumericLiteral,
    NumericLiteralStartsWithUnderscore,
    NumericLiteralEndsWithUnderscore,
    EmptyBigIntLiteral,
    InvalidHexDigit,
    MissingUnicodeCodePointOpeningBrace,
    MissingUnicodeCodePointClosingBrace,
    InvalidUnicodeCodePoint(u32),
    NomError(ErrorKind),
}Variants§
EmptyInput
TrailingCharacters
ConsecutiveUnderscoreInNumericLiteral
NumericLiteralStartsWithUnderscore
NumericLiteralEndsWithUnderscore
EmptyBigIntLiteral
InvalidHexDigit
MissingUnicodeCodePointOpeningBrace
MissingUnicodeCodePointClosingBrace
InvalidUnicodeCodePoint(u32)
NomError(ErrorKind)
Trait Implementations§
Source§impl Debug for SyntaxErrorKind
 
impl Debug for SyntaxErrorKind
Source§impl Display for SyntaxErrorKind
 
impl Display for SyntaxErrorKind
Source§impl Error for SyntaxErrorKind
 
impl Error for SyntaxErrorKind
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for SyntaxErrorKind
 
impl PartialEq for SyntaxErrorKind
impl StructuralPartialEq for SyntaxErrorKind
Auto Trait Implementations§
impl Freeze for SyntaxErrorKind
impl RefUnwindSafe for SyntaxErrorKind
impl Send for SyntaxErrorKind
impl Sync for SyntaxErrorKind
impl Unpin for SyntaxErrorKind
impl UnwindSafe for SyntaxErrorKind
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