pub enum Event {
PI(String),
ElementStart(StartTag),
ElementEnd(EndTag),
Characters(String),
CDATA(String),
Comment(String),
}
Expand description
Events returned by the Parser
Variants§
PI(String)
Event indicating processing information was found
ElementStart(StartTag)
Event indicating a start tag was found
ElementEnd(EndTag)
Event indicating a end tag was found
Characters(String)
Event indicating character data was found
CDATA(String)
Event indicating CDATA was found
Comment(String)
Event indicating a comment was found
Trait Implementations§
impl Eq for Event
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more