Skip to main content

IWaypointSyncMethods

Trait IWaypointSyncMethods 

Source
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§

Source

fn init(self)

Init() overload

Source

fn on_enable(self)

OnEnable() overload

Source

fn on_validate(self)

OnValidate() overload

Source

fn update(self)

Update() overload

Source

fn on_destroy(self)

OnDestroy() overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IWaypointSync> IWaypointSyncMethods for __T

Available on crate feature app-waypointsync only.