libxml 0.2.3

A Rust wrapper for libxml2 - the XML C parser and toolkit developed for the Gnome project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The tree functionality
//!

mod document;
mod namespace;
mod node;
mod nodetype;

pub use tree::document::Document;
pub(crate) use tree::document::DocumentRef;
pub use tree::namespace::Namespace;
pub use tree::node::set_node_rc_guard;
pub use tree::node::{Node, NODE_RC_MAX_GUARD};
pub use tree::nodetype::NodeType;