pub trait DioxusWebComponent {
// Required method
fn element() -> Element;
// Provided method
fn attributes() -> &'static [&'static str] { ... }
}
Expand description
Dioxus web component
Required Methods§
Provided Methods§
sourcefn attributes() -> &'static [&'static str]
fn attributes() -> &'static [&'static str]
Provide observable attributes
Object Safety§
This trait is not object safe.