Split Node off into its own module: node.rs

This commit is contained in:
lumi 2018-12-23 15:59:13 +01:00
commit f0dd03d633
4 changed files with 207 additions and 194 deletions

View file

@ -71,10 +71,12 @@ extern crate failure;
pub mod error;
pub mod element;
pub mod convert;
pub mod node;
mod namespace_set;
#[cfg(test)] mod tests;
pub use error::{Error, Result};
pub use element::{Element, Node, Children, ChildrenMut, ElementBuilder};
pub use element::{Element, Children, ChildrenMut, ElementBuilder};
pub use node::Node;
pub use convert::IntoAttributeValue;