ori::app

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

The data type of the returned view.

Required Methods§

fn into_ui_builder( self, ) -> Box<dyn FnMut(&mut Self::Data) -> Box<dyn AnyView<Self::Data>>>

Convert a type into it’s requisite UiBuilder.

Implementors§

§

impl<T, V, F> IntoUiBuilder<V, &mut T> for F
where F: FnMut(&mut T) -> V + 'static, V: AnyView<T> + 'static,

§

type Data = T

§

impl<T, V, F> IntoUiBuilder<V, (T,)> for F
where F: FnMut() -> V + 'static, V: AnyView<T> + 'static,

§

type Data = T