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.