pub enum HtmlElem {
Tag {
tag_name: String,
children: Vec<HtmlElem>,
},
Text(String),
Documentation(String),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HtmlElem
impl RefUnwindSafe for HtmlElem
impl Send for HtmlElem
impl Sync for HtmlElem
impl Unpin for HtmlElem
impl UnwindSafe for HtmlElem
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