pub struct EndTag {
pub name: String,
pub ns: Option<String>,
pub prefix: Option<String>,
}
Expand description
Structure describing a closing tag
Fields§
§name: String
The tag’s name
ns: Option<String>
The tag’s namespace
prefix: Option<String>
The tag’s prefix
Trait Implementations§
impl Eq for EndTag
impl StructuralPartialEq for EndTag
Auto Trait Implementations§
impl Freeze for EndTag
impl RefUnwindSafe for EndTag
impl Send for EndTag
impl Sync for EndTag
impl Unpin for EndTag
impl UnwindSafe for EndTag
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