Expand description
Error management module
Modules§
- serialize
serialize
- A module to handle serde (de)serialization errors
Enums§
- Error
- The error type used by this crate.
- IllFormed
Error - An error returned if parsed document is not well-formed, for example, an opened tag is not closed before end of input.
- Syntax
Error - An error returned if parsed document does not correspond to the XML grammar,
for example, a tag opened by
<
not closed with>
. This error does not represent invalid XML constructs, for example, tags<>
and</>
a well-formed from syntax point-of-view.