Enum assembly_xml::common::exact::Error
source · #[non_exhaustive]pub enum Error {
Xml(Error),
XmlAttr(AttrError),
Generic(Box<dyn StdError + Send + Sync>),
ExpectedTag(String, String),
ExpectedEndTag(String, String),
ExpectedStartEndTag(&'static str, &'static str, XmlEventKind),
MissingTag(String),
MissingEndTag(String),
MissingTextOrEndTag(String),
MissingText,
MissingAttribute(String),
ExpectedAttribute(String, String),
}
Expand description
The errors for this module
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Xml(Error)
Malformed XML
XmlAttr(AttrError)
Malformed XML Attribute
Generic(Box<dyn StdError + Send + Sync>)
Generic
ExpectedTag(String, String)
Expected tag {0}
, found {1:?}
ExpectedEndTag(String, String)
Expected end tag {0}
, found {1:?}
ExpectedStartEndTag(&'static str, &'static str, XmlEventKind)
Expected <{0}> or </{1}>, but found {2:?}
MissingTag(String)
Missing tag {0}
MissingEndTag(String)
Missing end tag {0}
MissingTextOrEndTag(String)
Missing text or end tag {0}
MissingText
Missing text
MissingAttribute(String)
Missing Attribute {0}
ExpectedAttribute(String, String)
Expected Attribute {0}
, found {1:?}
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more