libxml/schemas/mod.rs
1//!
2//! Schema Validation Support (XSD)
3//!
4//! This module exposes wraps xmlschemas in libxml2. See original documentation or
5//! look at the example at examples/schema_example.rs for usage.
6//!
7//! WARNING: This module has not been tested in a multithreaded or multiprocessing
8//! environment.
9//!
10mod common;
11mod parser;
12mod schema;
13mod validation;
14
15use schema::Schema; // internally handled by SchemaValidationContext
16
17pub use parser::SchemaParserContext;
18pub use validation::SchemaValidationContext;