Enum nu_json::error::ErrorCode[][src]

pub enum ErrorCode {
Show variants Custom(String), 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

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 escape.

PunctuatorInQlString

Found a punctuator character when expecting a quoteless string.

Trait Implementations

impl Clone for ErrorCode[src]

impl Debug for ErrorCode[src]

impl PartialEq<ErrorCode> for ErrorCode[src]

impl StructuralPartialEq for ErrorCode[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.