pub trait AsReactiveText {
// Required method
fn as_reactive_text(&self) -> VirtualNode;
}Expand description
Trait for types that can be converted into a reactive text VirtualNode.
Signals implement this to produce a text node that auto-updates.
Required Methods§
Sourcefn as_reactive_text(&self) -> VirtualNode
fn as_reactive_text(&self) -> VirtualNode
Converts this value into a VirtualNode::Text with reactive signal binding.