Enum quick_xml::Error[][src]

pub enum Error {
    Io(Error),
    Utf8(Utf8Error),
    UnexpectedEof(String),
    EndEventMismatch {
        expected: String,
        found: String,
    },
    UnexpectedToken(String),
    UnexpectedBang,
    TextNotFound,
    XmlDeclWithoutVersion(Option<String>),
    NameWithQuote(usize),
    NoEqAfterName(usize),
    UnquotedValue(usize),
    DuplicatedAttribute(usizeusize),
    EscapeError(EscapeError),
}

The error type used by this crate.

Variants

Fields of EndEventMismatch

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error