pub trait IMapSequenceEngageSummonMethods: IMapSequenceEngageSummon {
Show 18 methods
// Provided methods
fn get_person(self) -> PersonData { ... }
fn set_person(self, value: impl Into<PersonData>) { ... }
fn get_rank(self) -> PersonData_Ranks { ... }
fn set_rank(self, value: impl Into<PersonData_Ranks>) { ... }
fn ctor(self) { ... }
fn mind_start(self) { ... }
fn mind_end(self) { ... }
fn bgm_start(self) { ... }
fn bgm_end(self) { ... }
fn calculate(self) { ... }
fn branch(self) { ... }
fn simple_summon(self) { ... }
fn combat_summon(self) { ... }
fn commit(self) { ... }
fn grow(self) { ... }
fn god_exp(self) { ... }
fn try_skip(self) { ... }
fn create_telop(self) { ... }
}Provided Methods§
Sourcefn get_person(self) -> PersonData
fn get_person(self) -> PersonData
get_Person() overload
Sourcefn set_person(self, value: impl Into<PersonData>)
fn set_person(self, value: impl Into<PersonData>)
set_Person(crate::app::persondata::PersonData) overload
Sourcefn get_rank(self) -> PersonData_Ranks
fn get_rank(self) -> PersonData_Ranks
get_Rank() overload
Sourcefn set_rank(self, value: impl Into<PersonData_Ranks>)
fn set_rank(self, value: impl Into<PersonData_Ranks>)
set_Rank(crate::app::persondata::PersonData_Ranks) overload
Sourcefn mind_start(self)
fn mind_start(self)
MindStart() overload
Sourcefn simple_summon(self)
fn simple_summon(self)
SimpleSummon() overload
Sourcefn combat_summon(self)
fn combat_summon(self)
CombatSummon() overload
Sourcefn create_telop(self)
fn create_telop(self)
CreateTelop() 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: IMapSequenceEngageSummon> IMapSequenceEngageSummonMethods for __T
Available on crate feature
app-mapsequenceengagesummon only.