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

pub enum ErrorCode {
    EOFWhileParsingList,
    EOFWhileParsingObject,
    EOFWhileParsingString,
    EOFWhileParsingValue,
    ExpectedColon,
    ExpectedListCommaOrEnd,
    ExpectedObjectCommaOrEnd,
    ExpectedSomeIdent,
    ExpectedSomeValue,
    InvalidEscape,
    InvalidNumber,
    InvalidUnicodeCodePoint,
    KeyMustBeAString,
    LoneLeadingSurrogateInHexEscape,
    UnknownField(String),
    MissingField(&'static str),
    TrailingCharacters,
    UnexpectedEndOfHexEscape,
}

The errors that can arise while parsing a JSON stream.

Variants

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.

Invalid unicode code point.

Object key is not a string.

Lone leading surrogate in hex escape.

Unknown field in struct.

Struct is missing a field.

JSON has non-whitespace trailing characters after the value.

Unexpected end of hex excape.

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.