pub enum ErrorCode {
Show 35 variants Io(String), Message(String), Base64Error(DecodeError), Eof, ExpectedArray, ExpectedArrayEnd, ExpectedAttribute, ExpectedAttributeEnd, ExpectedBoolean, ExpectedComma, ExpectedChar, ExpectedFloat, FloatUnderscore, ExpectedInteger, ExpectedOption, ExpectedOptionEnd, ExpectedMap, ExpectedMapColon, ExpectedMapEnd, ExpectedStructName { expected: &'static str, found: String, }, ExpectedStruct, ExpectedNamedStruct(&'static str), ExpectedStructEnd, ExpectedUnit, ExpectedString, ExpectedStringEnd, ExpectedIdentifier, InvalidEscape(&'static str), IntegerOutOfBounds, NoSuchExtension(String), UnclosedBlockComment, UnderscoreAtBeginning, UnexpectedByte(char), Utf8Error(Utf8Error), TrailingCharacters, // some variants omitted
}

Variants

Io(String)

Message(String)

Base64Error(DecodeError)

Eof

ExpectedArray

ExpectedArrayEnd

ExpectedAttribute

ExpectedAttributeEnd

ExpectedBoolean

ExpectedComma

ExpectedChar

ExpectedFloat

FloatUnderscore

ExpectedInteger

ExpectedOption

ExpectedOptionEnd

ExpectedMap

ExpectedMapColon

ExpectedMapEnd

ExpectedStructName

Fields

expected: &'static str
found: String

ExpectedStruct

ExpectedNamedStruct(&'static str)

ExpectedStructEnd

ExpectedUnit

ExpectedString

ExpectedStringEnd

ExpectedIdentifier

InvalidEscape(&'static str)

IntegerOutOfBounds

NoSuchExtension(String)

UnclosedBlockComment

UnderscoreAtBeginning

UnexpectedByte(char)

Utf8Error(Utf8Error)

TrailingCharacters

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.