pub trait IMenuBondSetterMethods: IMenuBondSetter {
// Provided methods
fn set_data(self, unit: impl Into<Unit>, god: impl Into<GodUnit>) { ... }
fn set_data_2(
self,
unit: impl Into<Unit>,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) { ... }
fn set_status(
self,
unit: impl Into<Unit>,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) { ... }
fn get_god_name(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_data(self, unit: impl Into<Unit>, god: impl Into<GodUnit>)
fn set_data(self, unit: impl Into<Unit>, god: impl Into<GodUnit>)
SetData(crate::app::unit::Unit, crate::app::godunit::GodUnit) overload
Sourcefn set_data_2(
self,
unit: impl Into<Unit>,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
)
fn set_data_2( self, unit: impl Into<Unit>, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, )
SetData(crate::app::unit::Unit, crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn set_status(
self,
unit: impl Into<Unit>,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
)
fn set_status( self, unit: impl Into<Unit>, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, )
SetStatus(crate::app::unit::Unit, crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) overload
Sourcefn get_god_name(
self,
god: impl Into<GodUnit>,
type: impl Into<RingCleaningSequence_GodType>,
) -> Il2CppString
fn get_god_name( self, god: impl Into<GodUnit>, type: impl Into<RingCleaningSequence_GodType>, ) -> Il2CppString
GetGodName(crate::app::godunit::GodUnit, crate::app::ringcleaningsequence::RingCleaningSequence_GodType) 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: IMenuBondSetter> IMenuBondSetterMethods for __T
Available on crate feature
app-menubondsetter only.