Module quick_xml::errors

source ·
Expand description

Error management module

Modules§

  • serializeserialize
    A module to handle serde (de)serialization errors

Enums§

  • The error type used by this crate.
  • An error returned if parsed document is not well-formed, for example, an opened tag is not closed before end of input.
  • 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.

Type Aliases§

  • A specialized Result type where the error is hard-wired to Error.