Skip to main content

IHubMoveStateMethods

Trait IHubMoveStateMethods 

Source
pub trait IHubMoveStateMethods: IHubMoveState {
    // Provided methods
    fn is_end(self) -> bool { ... }
    fn start(self, resume: impl Into<bool>) { ... }
    fn update(self) { ... }
    fn on_draw_gizmos(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn is_end(self) -> bool

IsEnd() overload

Source

fn start(self, resume: impl Into<bool>)

Start(bool) overload

Source

fn update(self)

Update() overload

Source

fn on_draw_gizmos(self)

OnDrawGizmos() 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: IHubMoveState> IHubMoveStateMethods for __T

Available on crate feature app-hubmovestate only.