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, }
rustc_private
): deprecated in favor of rustc-serialize on crates.io
The errors that can arise while parsing a JSON stream.
Variants
InvalidSyntax
rustc_private
): deprecated in favor of rustc-serialize on crates.io
InvalidNumber
rustc_private
): deprecated in favor of rustc-serialize on crates.io
EOFWhileParsingObject
rustc_private
): deprecated in favor of rustc-serialize on crates.io
EOFWhileParsingArray
rustc_private
): deprecated in favor of rustc-serialize on crates.io
EOFWhileParsingValue
rustc_private
): deprecated in favor of rustc-serialize on crates.io
EOFWhileParsingString
rustc_private
): deprecated in favor of rustc-serialize on crates.io
KeyMustBeAString
rustc_private
): deprecated in favor of rustc-serialize on crates.io
ExpectedColon
rustc_private
): deprecated in favor of rustc-serialize on crates.io
TrailingCharacters
rustc_private
): deprecated in favor of rustc-serialize on crates.io
TrailingComma
rustc_private
): deprecated in favor of rustc-serialize on crates.io
InvalidEscape
rustc_private
): deprecated in favor of rustc-serialize on crates.io
InvalidUnicodeCodePoint
rustc_private
): deprecated in favor of rustc-serialize on crates.io
LoneLeadingSurrogateInHexEscape
rustc_private
): deprecated in favor of rustc-serialize on crates.io
UnexpectedEndOfHexEscape
rustc_private
): deprecated in favor of rustc-serialize on crates.io
UnrecognizedHex
rustc_private
): deprecated in favor of rustc-serialize on crates.io
NotFourDigit
rustc_private
): deprecated in favor of rustc-serialize on crates.io
NotUtf8
rustc_private
): deprecated in favor of rustc-serialize on crates.io
Trait Implementations
impl Display for ErrorCode
[src]
Derived Implementations
impl Debug for ErrorCode
[src]
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