pub struct HtmlTag {
pub meta: NodeMeta,
pub name: String,
pub raw: String,
}Expand description
A raw HTML tag that bounds an HtmlContainer.
Fields§
§meta: NodeMetaNode metadata (source span).
name: StringThe normalized lowercase tag name.
raw: StringThe literal tag source, including angle brackets and attributes.
Trait Implementations§
impl Eq for HtmlTag
impl StructuralPartialEq for HtmlTag
Auto Trait Implementations§
impl Freeze for HtmlTag
impl RefUnwindSafe for HtmlTag
impl Send for HtmlTag
impl Sync for HtmlTag
impl Unpin for HtmlTag
impl UnsafeUnpin for HtmlTag
impl UnwindSafe for HtmlTag
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