Skip to main content

IDishSelectMenuCategoryContentMethods

Trait IDishSelectMenuCategoryContentMethods 

Source
pub trait IDishSelectMenuCategoryContentMethods: IDishSelectMenuCategoryContent {
    // Provided methods
    fn awake(self) { ... }
    fn next(self, is_trigger: impl Into<bool>) -> bool { ... }
    fn prev(self, is_trigger: impl Into<bool>) -> bool { ... }
    fn init_object(self) { ... }
    fn check_enable(
        self,
        category: impl Into<DishSelectMenuCategoryContent_CategoryObject>,
    ) -> bool { ... }
    fn set_active(
        self,
        game_object: impl Into<GameObject>,
        value: impl Into<bool>,
    ) { ... }
    fn update_index(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn next(self, is_trigger: impl Into<bool>) -> bool

Next(bool) overload

Source

fn prev(self, is_trigger: impl Into<bool>) -> bool

Prev(bool) overload

Source

fn init_object(self)

InitObject() overload

Source

fn check_enable( self, category: impl Into<DishSelectMenuCategoryContent_CategoryObject>, ) -> bool

CheckEnable(crate::app::cooking_menu::dishselectmenucategorycontent::DishSelectMenuCategoryContent_CategoryObject) overload

Source

fn set_active(self, game_object: impl Into<GameObject>, value: impl Into<bool>)

SetActive(crate::unity_engine::gameobject::GameObject, bool) overload

Source

fn update_index(self)

UpdateIndex() 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: IDishSelectMenuCategoryContent> IDishSelectMenuCategoryContentMethods for __T

Available on crate feature app-cooking_menu-dishselectmenucategorycontent only.