pub trait IWaypointSyncMethods: IWaypointSync {
// Provided methods
fn init(self) { ... }
fn on_enable(self) { ... }
fn on_validate(self) { ... }
fn update(self) { ... }
fn on_destroy(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_validate(self)
fn on_validate(self)
OnValidate() overload
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IWaypointSync> IWaypointSyncMethods for __T
Available on crate feature
app-waypointsync only.