pub enum ErrorCode {
Show 18 variants
Custom(String),
EofWhileParsingList,
EofWhileParsingObject,
EofWhileParsingString,
EofWhileParsingValue,
ExpectedColon,
ExpectedListCommaOrEnd,
ExpectedObjectCommaOrEnd,
ExpectedSomeIdent,
ExpectedSomeValue,
InvalidEscape,
InvalidNumber,
InvalidUnicodeCodePoint,
KeyMustBeAString,
LoneLeadingSurrogateInHexEscape,
TrailingCharacters,
UnexpectedEndOfHexEscape,
PunctuatorInQlString,
}
Expand description
The errors that can arise while parsing a JSON stream.
Variants§
Custom(String)
Catchall for syntax error messages
EofWhileParsingList
EOF while parsing a list.
EofWhileParsingObject
EOF while parsing an object.
EofWhileParsingString
EOF while parsing a string.
EofWhileParsingValue
EOF while parsing a JSON value.
ExpectedColon
Expected this character to be a ':'
.
ExpectedListCommaOrEnd
Expected this character to be either a ','
or a ]
.
ExpectedObjectCommaOrEnd
Expected this character to be either a ','
or a }
.
ExpectedSomeIdent
Expected to parse either a true
, false
, or a null
.
ExpectedSomeValue
Expected this character to start a JSON value.
InvalidEscape
Invalid hex escape code.
InvalidNumber
Invalid number.
InvalidUnicodeCodePoint
Invalid Unicode code point.
KeyMustBeAString
Object key is not a string.
LoneLeadingSurrogateInHexEscape
Lone leading surrogate in hex escape.
TrailingCharacters
JSON has non-whitespace trailing characters after the value.
UnexpectedEndOfHexEscape
Unexpected end of hex escape.
PunctuatorInQlString
Found a punctuator character when expecting a quoteless string.
Trait Implementations§
impl Eq for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)