Type Definition typed_html::dom::DOMTree
source · Expand description
A boxed DOM tree, as returned from the html!
macro.
Examples
let tree: DOMTree<String> = html!(
<div class="hello">
<p>"Hello Joe!"</p>
</div>
);
let rendered_tree: String = tree.to_string();