tree_xml/
lib.rs

1//! Tree abstraction on top of the high performence XML reader/writer [quick-xml](https://crates.io/crates/quick-xml)
2
3#![forbid(unsafe_code)]
4// #![deny(missing_docs)]
5#![warn(clippy::all)]
6#![warn(clippy::style)]
7#![warn(clippy::complexity)]
8#![warn(clippy::cargo)]
9#![warn(clippy::nursery)]
10#![warn(clippy::pedantic)]
11// #![warn(clippy::restriction)]
12#![deny(clippy::unwrap_used)]
13#![deny(clippy::expect_used)]
14
15/// Error management module.
16pub mod error;
17/// High level representation of an XML DOM element.
18pub mod node;
19/// Contains helper traits to work with [Nodes](crate::node::Node).
20pub mod traits;