aboutsummaryrefslogtreecommitdiffstats
path: root/src/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/event.rs')
-rw-r--r--src/event.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/event.rs b/src/event.rs
deleted file mode 100644
index 244d3aa..0000000
--- a/src/event.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// tags, declaration, comments, text. individual bits and what they contain, e.g. tag contains attributes and namespace declarations, lang, ONLY within the tag
-
-pub enum Event<'s> {
- StartTag(Vec<Event<'s>>),
- EmptyTag(Vec<Event>),
- Attribute(())
- CData(&'s str),
- Comment(&'s str),
- Declaration(Vec<Attribute<'s>>),
- Attribute((&'str))
- EndTag,
-}