pub enum TagEnd {
SelfClosing,
Normal,
}Expand description
the ending tag of an element i.e “>” in “<Element>”
Variants§
SelfClosing
A self closing tag ending with />. No children
Normal
A normal closing tag >. Potential children
Trait Implementations§
impl Copy for TagEnd
impl Eq for TagEnd
impl StructuralPartialEq for TagEnd
Auto Trait Implementations§
impl Freeze for TagEnd
impl RefUnwindSafe for TagEnd
impl Send for TagEnd
impl Sync for TagEnd
impl Unpin for TagEnd
impl UnwindSafe for TagEnd
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