pub struct EndTag {
pub name: String,
}
Expand description
An HTML end/close tag, such as </p>
or </a>
.
Fields§
§name: String
The tag name. Uppercase ASCII characters (A-Z) have been converted to lowercase.
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