Update to edition 2018
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
11a5c49470
commit
5aee776f66
5 changed files with 16 additions and 16 deletions
|
|
@ -1,14 +1,13 @@
|
|||
//! Provides the `Node` struct, which represents a node in the DOM.
|
||||
|
||||
use crate::element::{Element, ElementBuilder};
|
||||
use crate::error::Result;
|
||||
|
||||
use std::io::Write;
|
||||
|
||||
use quick_xml::Writer as EventWriter;
|
||||
use quick_xml::events::{Event, BytesText};
|
||||
|
||||
use error::Result;
|
||||
|
||||
use element::{Element, ElementBuilder};
|
||||
|
||||
/// A node in an element tree.
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub enum Node {
|
||||
|
|
|
|||
Loading…
Reference in a new issue