Enum serialize::json::ErrorCode [] [src]

pub enum ErrorCode {
    InvalidSyntax,
    InvalidNumber,
    EOFWhileParsingObject,
    EOFWhileParsingArray,
    EOFWhileParsingValue,
    EOFWhileParsingString,
    KeyMustBeAString,
    ExpectedColon,
    TrailingCharacters,
    TrailingComma,
    InvalidEscape,
    InvalidUnicodeCodePoint,
    LoneLeadingSurrogateInHexEscape,
    UnexpectedEndOfHexEscape,
    UnrecognizedHex,
    NotFourDigit,
    NotUtf8,
}
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

The errors that can arise while parsing a JSON stream.

Variants

InvalidSyntax
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

InvalidNumber
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

EOFWhileParsingObject
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

EOFWhileParsingArray
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

EOFWhileParsingValue
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

EOFWhileParsingString
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

KeyMustBeAString
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

ExpectedColon
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

TrailingCharacters
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

TrailingComma
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

InvalidEscape
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

InvalidUnicodeCodePoint
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

LoneLeadingSurrogateInHexEscape
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

UnexpectedEndOfHexEscape
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

UnrecognizedHex
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

NotFourDigit
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

NotUtf8
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Trait Implementations

impl Display for ErrorCode
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

Derived Implementations

impl Debug for ErrorCode
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for ErrorCode
[src]

fn eq(&self, __arg_0: &ErrorCode) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Copy for ErrorCode
[src]

impl Clone for ErrorCode
[src]

fn clone(&self) -> ErrorCode

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more