Trait domafic::dom_node::IntoNode [] [src]

pub trait IntoNode<M> {
    type Node: DomNode<Message = M>;
    fn into_node(self) -> Self::Node;
}

Types that can be converted into DomNodes with messages of type M

Associated Types

The type of the resulting node

Required Methods

Consume self to produce a DomNode

Implementors