pub enum ElementEvent {
StartElement {
name: OwnedName,
attributes: Vec<OwnedAttribute>,
},
EndElement {
name: OwnedName,
},
}Variants§
Auto Trait Implementations§
impl Freeze for ElementEvent
impl RefUnwindSafe for ElementEvent
impl Send for ElementEvent
impl Sync for ElementEvent
impl Unpin for ElementEvent
impl UnsafeUnpin for ElementEvent
impl UnwindSafe for ElementEvent
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