pub trait IntoDynNode<A = ()> {
// Required method
fn into_dyn_node(self) -> DynamicNode;
}
Expand description
A trait that allows various items to be converted into a dynamic node for the rsx macro
Required Methods§
sourcefn into_dyn_node(self) -> DynamicNode
fn into_dyn_node(self) -> DynamicNode
Consume this item and produce a DynamicNode