pub trait TriggerLoad {
// Required method
fn trigger_load(self, event: impl LoadEvent);
}Required Methods§
Sourcefn trigger_load(self, event: impl LoadEvent)
fn trigger_load(self, event: impl LoadEvent)
Triggers the given LoadEvent.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".