Split Node off into its own module: node.rs
This commit is contained in:
parent
c5c8dee20a
commit
f0dd03d633
4 changed files with 207 additions and 194 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue