libxml 0.3.8

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
pub mod c14n;
pub mod document;
pub mod namespace;
pub mod node;
pub mod nodetype;

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