Trait moxie_dom::interfaces::node::NodeBuilder[][src]

pub trait NodeBuilder {
    type Output;
    fn build(self) -> Self::Output;
}
Expand description

A builder for DOM nodes

Associated Types

The type of the DOM node

Required methods

Build, returning the output.

Implementors