pub struct HtmlTag {
pub tag: &'static str,
pub attributes: Attributes,
pub children: Vec<Element>,
}Fields§
§tag: &'static str§attributes: Attributes§children: Vec<Element>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