[][src]Enum serde_hjson::error::ErrorCode

pub enum ErrorCode {
    Custom(String),
    InvalidType(Type),
    InvalidValue(String),
    InvalidLength(usize),
    UnknownVariant(String),
    UnknownField(String),
    MissingField(&'static str),
    EOFWhileParsingList,
    EOFWhileParsingObject,
    EOFWhileParsingString,
    EOFWhileParsingValue,
    ExpectedColon,
    ExpectedListCommaOrEnd,
    ExpectedObjectCommaOrEnd,
    ExpectedSomeIdent,
    ExpectedSomeValue,
    InvalidEscape,
    InvalidNumber,
    InvalidUnicodeCodePoint,
    KeyMustBeAString,
    LoneLeadingSurrogateInHexEscape,
    TrailingCharacters,
    UnexpectedEndOfHexEscape,
    PunctuatorInQlString,
}

The errors that can arise while parsing a JSON stream.

Variants

Custom(String)

Catchall for syntax error messages

InvalidType(Type)

Incorrect type from value

InvalidValue(String)

Incorrect value

InvalidLength(usize)

Invalid length

UnknownVariant(String)

Unknown variant in an enum.

UnknownField(String)

Unknown field in struct.

MissingField(&'static str)

Struct is missing a field.

EOFWhileParsingList

EOF while parsing a list.

EOFWhileParsingObject

EOF while parsing an object.

EOFWhileParsingString

EOF while parsing a string.

EOFWhileParsingValue

EOF while parsing a JSON value.

ExpectedColon

Expected this character to be a ':'.

ExpectedListCommaOrEnd

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

ExpectedObjectCommaOrEnd

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

ExpectedSomeIdent

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

ExpectedSomeValue

Expected this character to start a JSON value.

InvalidEscape

Invalid hex escape code.

InvalidNumber

Invalid number.

InvalidUnicodeCodePoint

Invalid unicode code point.

KeyMustBeAString

Object key is not a string.

LoneLeadingSurrogateInHexEscape

Lone leading surrogate in hex escape.

TrailingCharacters

JSON has non-whitespace trailing characters after the value.

UnexpectedEndOfHexEscape

Unexpected end of hex excape.

PunctuatorInQlString

Found a punctuator character when expecting a quoteless string.

Trait Implementations

impl Clone for ErrorCode[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<ErrorCode> for ErrorCode[src]

impl Debug for ErrorCode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]