Skip to main content

IMenuBondSetterMethods

Trait IMenuBondSetterMethods 

Source
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§

Source

fn set_data(self, unit: impl Into<Unit>, god: impl Into<GodUnit>)

SetData(crate::app::unit::Unit, crate::app::godunit::GodUnit) overload

Source

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

Source

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

Source

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

Source

fn ctor(self)

.ctor() 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: IMenuBondSetter> IMenuBondSetterMethods for __T

Available on crate feature app-menubondsetter only.