pub trait IntoUiNode {
// Required method
fn into_node(self) -> UiNode;
}Expand description
Represents a value that can become a UiNode instance.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".