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§
Sourcefn load_resource(self)
fn load_resource(self)
LoadResource() overload
Sourcefn unload_resource(self)
fn unload_resource(self)
UnloadResource() overload
Sourcefn is_resource_loading(self) -> bool
fn is_resource_loading(self) -> bool
IsResourceLoading() overload
Sourcefn play_open_se(self)
fn play_open_se(self)
PlayOpenSE() overload
Sourcefn play_close_se(self)
fn play_close_se(self)
PlayCloseSE() overload
Sourcefn tick_instruction(self)
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§
impl<__T: IDragonRideInstructionSequence> IDragonRideInstructionSequenceMethods for __T
Available on crate feature
app-dragonrideinstructionsequence only.