fastxml 0.8.1

A fast, memory-efficient XML library with XPath and XSD validation support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! XML node representation and operations.

pub mod error;
mod mutable;
mod readonly;
mod types;

#[cfg(test)]
mod tests;

// Re-export public types
pub use mutable::XmlNode;
pub use readonly::XmlRoNode;
pub use types::{NodeId, NodeType};

// Re-export internal types for crate use
pub(crate) use types::NodeData;