pub trait Builder {
    type Target;

    fn build(self) -> Self::Target;
    fn into_element(self) -> Element;
}
Expand description

An HTML element builder.

Required Associated Types§

Required Methods§

Implementors§