1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! This library provides a generic interface to parse XML data: a user might implement how to
//! parse and serialize their data (possibly derived), while others will implement adaptors for
//! generic XML parsers.
//!
//! This is similar to what serde does; but serde assumes your data consists of "native data"
//! (strings, integers, floats, ...) and nested data (lists and maps). XML doesn't map to this
//! very well; while there are some adaptors, they often accept lots of structually different input
//! data: an element might be interpreted as map in serde. A subelement with text now can be
//! interpreted as key (`<key>value</key>`), but an attribute is interpreted the same way `<...
//! key="value">`.
//!
//! This library focuses only on XML instead, and provides a more strict interface with clearly
//! defined output.
//!
//! For the following XML handling crates adaptors are included if enabled through the equally
//! named features:
//! - [`quick-xml`](https://crates.io/crates/quick-xml)
//!
//! If the `derive` feature is enabled the following traits can be derived:
//! - `Element`
//! - `parser::Element`
//! - `serializer::Element`
//! - `Inner`
//! - `parser::Inner`
//! - `serializer::Inner`
/// For now we use a simple boxed error to show the user
pub type Error = ;
/// Result alias with out error type included
pub type Result<T> = Result;
pub use ;