Enum ron::de::ParseError [] [src]

pub enum ParseError {
    Eof,
    ExpectedArray,
    ExpectedArrayEnd,
    ExpectedBoolean,
    ExpectedComma,
    ExpectedEnum,
    ExpectedChar,
    ExpectedFloat,
    ExpectedInteger,
    ExpectedOption,
    ExpectedOptionEnd,
    ExpectedMap,
    ExpectedMapColon,
    ExpectedMapEnd,
    ExpectedStruct,
    ExpectedStructEnd,
    ExpectedUnit,
    ExpectedStructName,
    ExpectedString,
    ExpectedStringEnd,
    ExpectedIdentifier,
    InvalidEscape,
    UnexpectedByte(char),
    Utf8Error(Utf8Error),
    TrailingCharacters,
    // some variants omitted
}

Variants

Trait Implementations

impl Clone for ParseError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ParseError
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ParseError
[src]

[src]

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

[src]

This method tests for !=.

impl From<Utf8Error> for ParseError
[src]

[src]

Performs the conversion.

impl From<FromUtf8Error> for ParseError
[src]

[src]

Performs the conversion.