Enum serde_xml::de::LexerError [] [src]

pub enum LexerError {
    EOF,
    ExpectedLT,
    ExpectedQuotes,
    Utf8,
    MixedElementsAndText,
    ExpectedEOF,
    ExpectedEq,
    BadComment,
    BadCDATA,
    BadCommentOrCDATA,
    BadDeclaration,
    BadEscapeSequence,
    Unexpected(u8),
    NotANumber(u8),
    NotAHex(u8),
    EscapedNotUtf8,
    Io,
}

Variants

EOFExpectedLTExpectedQuotesUtf8MixedElementsAndTextExpectedEOFExpectedEqBadCommentBadCDATABadCommentOrCDATABadDeclarationBadEscapeSequenceUnexpected(u8)NotANumber(u8)NotAHex(u8)EscapedNotUtf8Io

Trait Implementations

impl From<Error> for LexerError
[src]

fn from(_: Error) -> LexerError

Performs the conversion.

impl Clone for LexerError
[src]

fn clone(&self) -> LexerError

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

impl PartialEq for LexerError
[src]

fn eq(&self, __arg_0: &LexerError) -> bool

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

fn ne(&self, __arg_0: &LexerError) -> bool

This method tests for !=.

impl Copy for LexerError
[src]

impl Debug for LexerError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.