Trait IntoDynNode

Source
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§

Source

fn into_dyn_node(self) -> DynamicNode

Consume this item and produce a DynamicNode

Implementations on Foreign Types§

Source§

impl IntoDynNode for &Option<VNode>

Source§

impl IntoDynNode for &str

Source§

impl IntoDynNode for ()

Source§

impl IntoDynNode for String

Source§

impl IntoDynNode for Arguments<'_>

Source§

impl<T: IntoDynNode> IntoDynNode for Option<T>

Implementors§