pub enum Event<'l> {
Error(Error),
Tag(&'l str, Type, Attributes),
Text(&'l str),
Comment(&'l str),
Declaration(&'l str),
Instruction(&'l str),
}
Expand description
An event.
Variants§
Error(Error)
An error.
Tag(&'l str, Type, Attributes)
A tag.
Text(&'l str)
A text.
Comment(&'l str)
A comment.
Declaration(&'l str)
A declaration.
Instruction(&'l str)
An instruction.
Trait Implementations§
Auto Trait Implementations§
impl<'l> Freeze for Event<'l>
impl<'l> RefUnwindSafe for Event<'l>
impl<'l> Send for Event<'l>
impl<'l> Sync for Event<'l>
impl<'l> Unpin for Event<'l>
impl<'l> UnwindSafe for Event<'l>
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