Enum rustc_serialize::json::ErrorCode
[−]
[src]
pub enum ErrorCode { InvalidSyntax, InvalidNumber, EOFWhileParsingObject, EOFWhileParsingArray, EOFWhileParsingValue, EOFWhileParsingString, KeyMustBeAString, ExpectedColon, TrailingCharacters, TrailingComma, InvalidEscape, InvalidUnicodeCodePoint, LoneLeadingSurrogateInHexEscape, UnexpectedEndOfHexEscape, UnrecognizedHex, NotFourDigit, ControlCharacterInString, NotUtf8, }
The errors that can arise while parsing a JSON stream.
Variants
InvalidSyntax
InvalidNumber
EOFWhileParsingObject
EOFWhileParsingArray
EOFWhileParsingValue
EOFWhileParsingString
KeyMustBeAString
ExpectedColon
TrailingCharacters
TrailingComma
InvalidEscape
InvalidUnicodeCodePoint
LoneLeadingSurrogateInHexEscape
UnexpectedEndOfHexEscape
UnrecognizedHex
NotFourDigit
ControlCharacterInString
NotUtf8
Trait Implementations
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