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(usize, usize),
EscapeError(EscapeError),
}The error type used by this crate.
Variants
Io(Error)Utf8(Utf8Error)UnexpectedEof(String)EndEventMismatchFields of EndEventMismatch
expected: String | |
found: String |
UnexpectedToken(String)UnexpectedBangTextNotFoundXmlDeclWithoutVersion(Option<String>)NameWithQuote(usize)NoEqAfterName(usize)UnquotedValue(usize)DuplicatedAttribute(usize, usize)EscapeError(EscapeError)