libxml 0.3.14

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
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::Node;
// Deprecated, retained for API compatibility (see their definitions in `node`).
#[allow(deprecated)]
pub use self::node::{NODE_RC_MAX_GUARD, set_node_rc_guard};
pub use self::nodetype::NodeType;