pub enum XmlEvent {
StartElement {
name: OwnedName,
attributes: Vec<OwnedAttribute>,
namespace: Namespace,
},
EndElement {
name: OwnedName,
},
Characters(String),
Whitespace(String),
EndDocument,
}Variants§
Trait Implementations§
impl StructuralPartialEq for XmlEvent
Auto Trait Implementations§
impl Freeze for XmlEvent
impl RefUnwindSafe for XmlEvent
impl Send for XmlEvent
impl Sync for XmlEvent
impl Unpin for XmlEvent
impl UnsafeUnpin for XmlEvent
impl UnwindSafe for XmlEvent
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