1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
//! # A wrapper for libxml2 //! This library provides an interface to a subset of the libxml API. //! The idea is to extend it whenever more functionality is needed. //! Providing a more or less complete wrapper would be too much work. #![deny(missing_docs)] // Our new methods return Result<Self, _> types #![allow(clippy::new_ret_no_self)] /// Bindings to the C interface pub mod bindings; mod c_helpers; /// XML and HTML parsing pub mod parser; /// Manipulations on the DOM representation pub mod tree; /// XML Global Error Structures and Handling pub mod error; /// `XPath` module for global lookup in the DOM pub mod xpath; /// Schema Validation pub mod schemas; /// Read-only parallel primitives pub mod readonly;