Trait IntoUiBuilder
pub trait IntoUiBuilder<V, P> {
type Data;
// Required method
fn into_ui_builder(
self,
) -> Box<dyn FnMut(&mut Self::Data) -> Box<dyn AnyView<Self::Data>>>;
}
Expand description
Trait for converting a type into a UiBuilder
.
Required Associated Types§
type Data
type Data
The data type of the returned view.