pub trait OnComponentInitializedHook<Node>: Send {
// Required method
fn on_event(self: Box<Self>, node: Node) -> Result<()>;
}Expand description
A helper trait for the event hook that is run once the node is initialized.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".