pub trait VarPresentListFromNode<L: VarValue> {
// Required method
fn present_list_from_node(
&self,
list_fn: impl IntoVar<WidgetFn<L>>,
) -> UiNode;
}Expand description
Extension method to convert a variable to a node list.
Required Methods§
Sourcefn present_list_from_node(&self, list_fn: impl IntoVar<WidgetFn<L>>) -> UiNode
fn present_list_from_node(&self, list_fn: impl IntoVar<WidgetFn<L>>) -> UiNode
Present the variable data using a list_presenter_from_node node list.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.