pub trait NodeBuilder { type Output; fn build(self) -> Self::Output; }
A builder for DOM nodes
The type of the DOM node
Build, returning the output.