Enum serde_json::error::ErrorCode [] [src]

pub enum ErrorCode {
    Message(String),
    EOFWhileParsingList,
    EOFWhileParsingObject,
    EOFWhileParsingString,
    EOFWhileParsingValue,
    ExpectedColon,
    ExpectedListCommaOrEnd,
    ExpectedObjectCommaOrEnd,
    ExpectedSomeIdent,
    ExpectedSomeValue,
    InvalidEscape,
    InvalidNumber,
    NumberOutOfRange,
    InvalidUnicodeCodePoint,
    KeyMustBeAString,
    LoneLeadingSurrogateInHexEscape,
    TrailingCharacters,
    UnexpectedEndOfHexEscape,
    RecursionLimitExceeded,
}

The errors that can arise while parsing a JSON stream.

Variants

Catchall for syntax error messages

EOF while parsing a list.

EOF while parsing an object.

EOF while parsing a string.

EOF while parsing a JSON value.

Expected this character to be a ':'.

Expected this character to be either a ',' or a ].

Expected this character to be either a ',' or a }.

Expected to parse either a true, false, or a null.

Expected this character to start a JSON value.

Invalid hex escape code.

Invalid number.

Number is bigger than the maximum value of its type.

Invalid unicode code point.

Object key is not a string.

Lone leading surrogate in hex escape.

JSON has non-whitespace trailing characters after the value.

Unexpected end of hex excape.

Encountered nesting of JSON maps and arrays more than 128 layers deep.

Trait Implementations

impl Clone for ErrorCode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ErrorCode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for ErrorCode
[src]

Formats the value using the given formatter.

impl Display for ErrorCode
[src]

Formats the value using the given formatter.