pub trait Builder {
type Target;
// Required methods
fn build(self) -> Self::Target;
fn into_element(self) -> Element;
}
Expand description
An HTML element builder.
pub trait Builder {
type Target;
// Required methods
fn build(self) -> Self::Target;
fn into_element(self) -> Element;
}
An HTML element builder.