pub enum HtmlElementChildren<'a> {
TextContent(Cow<'a, str>),
Children(Vec<HtmlElement<'a>>),
}
Variants§
Trait Implementations§
Source§impl<'a> Debug for HtmlElementChildren<'a>
impl<'a> Debug for HtmlElementChildren<'a>
Source§impl Display for HtmlElementChildren<'_>
impl Display for HtmlElementChildren<'_>
Source§impl<'a> PartialEq for HtmlElementChildren<'a>
impl<'a> PartialEq for HtmlElementChildren<'a>
impl<'a> Eq for HtmlElementChildren<'a>
impl<'a> StructuralPartialEq for HtmlElementChildren<'a>
Auto Trait Implementations§
impl<'a> Freeze for HtmlElementChildren<'a>
impl<'a> !RefUnwindSafe for HtmlElementChildren<'a>
impl<'a> !Send for HtmlElementChildren<'a>
impl<'a> !Sync for HtmlElementChildren<'a>
impl<'a> Unpin for HtmlElementChildren<'a>
impl<'a> !UnwindSafe for HtmlElementChildren<'a>
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