pub trait IMapSequenceSkipReplayMethods: IMapSequenceSkipReplay {
// Provided methods
fn ctor(self, setup_field_func: impl Into<Action>) { ... }
fn skip_replay(self) { ... }
fn setup_field(self) { ... }
fn load_actor(self) { ... }
fn setup(self) { ... }
}Provided Methods§
Sourcefn ctor(self, setup_field_func: impl Into<Action>)
fn ctor(self, setup_field_func: impl Into<Action>)
.ctor(crate::system::action::Action) overload
Sourcefn skip_replay(self)
fn skip_replay(self)
SkipReplay() overload
Sourcefn setup_field(self)
fn setup_field(self)
SetupField() overload
Sourcefn load_actor(self)
fn load_actor(self)
LoadActor() 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: IMapSequenceSkipReplay> IMapSequenceSkipReplayMethods for __T
Available on crate feature
app-mapsequenceskipreplay only.