pub enum ParserEvent {
Text(String),
StartTag(String, Attributes),
Chunk(Vec<u8>),
EndTag(String),
}Variants§
Trait Implementations§
Source§impl Clone for ParserEvent
impl Clone for ParserEvent
Source§fn clone(&self) -> ParserEvent
fn clone(&self) -> ParserEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParserEvent
impl Debug for ParserEvent
Source§impl PartialEq for ParserEvent
impl PartialEq for ParserEvent
impl Eq for ParserEvent
impl StructuralPartialEq for ParserEvent
Auto Trait Implementations§
impl Freeze for ParserEvent
impl RefUnwindSafe for ParserEvent
impl Send for ParserEvent
impl Sync for ParserEvent
impl Unpin for ParserEvent
impl UnsafeUnpin for ParserEvent
impl UnwindSafe for ParserEvent
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