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§
Sourcefn init_object(self)
fn init_object(self)
InitObject() overload
Sourcefn check_enable(
self,
category: impl Into<DishSelectMenuCategoryContent_CategoryObject>,
) -> bool
fn check_enable( self, category: impl Into<DishSelectMenuCategoryContent_CategoryObject>, ) -> bool
CheckEnable(crate::app::cooking_menu::dishselectmenucategorycontent::DishSelectMenuCategoryContent_CategoryObject) overload
Sourcefn set_active(self, game_object: impl Into<GameObject>, value: impl Into<bool>)
fn set_active(self, game_object: impl Into<GameObject>, value: impl Into<bool>)
SetActive(crate::unity_engine::gameobject::GameObject, bool) overload
Sourcefn update_index(self)
fn update_index(self)
UpdateIndex() 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: IDishSelectMenuCategoryContent> IDishSelectMenuCategoryContentMethods for __T
Available on crate feature
app-cooking_menu-dishselectmenucategorycontent only.