Skip to main content

IDragonRideInstructionSequenceMethods

Trait IDragonRideInstructionSequenceMethods 

Source
pub trait IDragonRideInstructionSequenceMethods: IDragonRideInstructionSequence {
    // Provided methods
    fn ctor(self) { ... }
    fn load_resource(self) { ... }
    fn unload_resource(self) { ... }
    fn is_resource_loading(self) -> bool { ... }
    fn init(self) { ... }
    fn exit(self) { ... }
    fn play_open_se(self) { ... }
    fn play_close_se(self) { ... }
    fn tick_instruction(self) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn load_resource(self)

LoadResource() overload

Source

fn unload_resource(self)

UnloadResource() overload

Source

fn is_resource_loading(self) -> bool

IsResourceLoading() overload

Source

fn init(self)

Init() overload

Source

fn exit(self)

Exit() overload

Source

fn play_open_se(self)

PlayOpenSE() overload

Source

fn play_close_se(self)

PlayCloseSE() overload

Source

fn tick_instruction(self)

TickInstruction() 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: IDragonRideInstructionSequence> IDragonRideInstructionSequenceMethods for __T

Available on crate feature app-dragonrideinstructionsequence only.