pub trait ElementBuilderOrView<'a, G: GenericNode> {
    fn into_view(self, cx: Scope<'a>) -> View<G>;
}
Expand description

A trait that is implemented only for ElementBuilder and View. This should be considered implementation details and should not be used.

Required Methods

Convert into a View.

Implementors