aboutsummaryrefslogtreecommitdiff
path: root/src/reader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/reader.rs')
-rw-r--r--src/reader.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/reader.rs b/src/reader.rs
index 71ea79b..20a790c 100644
--- a/src/reader.rs
+++ b/src/reader.rs
@@ -11,17 +11,18 @@ use crate::common::{Position, TextPosition};
pub use self::config::ParserConfig;
pub use self::config::ParserConfig2;
-
+pub use self::error::{Error, ErrorKind};
pub use self::events::XmlEvent;
+
use self::parser::PullParser;
mod config;
mod events;
mod lexer;
mod parser;
-
+mod indexset;
mod error;
-pub use self::error::{Error, ErrorKind};
+
/// A result type yielded by `XmlReader`.
pub type Result<T, E = Error> = result::Result<T, E>;