pub trait Fragment {
    fn apply<'a>(&self, dom: FragmentBuilder<'a>) -> FragmentBuilder<'a>;
}
Expand description

A fragment is a collection of children which can be inserted into a DomBuilder.

See the documentation for fragment for more details.

Required Methods

Implementations on Foreign Types

Implementors