pub trait IDishAllMenuContent_FoodstuffsHistoryMethods: IDishAllMenuContent_FoodstuffsHistory {
// Provided methods
fn ctor(
self,
game_object: impl Into<GameObject>,
foodstuff_item_list: impl Into<List_1<GameObject>>,
foodstuff_group: impl Into<GameObject>,
) { ... }
fn show(self, foodstuffs: impl Into<List_1<FoodstuffData>>) { ... }
fn set_foodstuffs(self, foodstuffs: impl Into<List_1<FoodstuffData>>) { ... }
fn set_foodstuff_item(
self,
content_item: impl Into<GameObject>,
data: impl Into<FoodstuffData>,
) { ... }
fn hide(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
game_object: impl Into<GameObject>,
foodstuff_item_list: impl Into<List_1<GameObject>>,
foodstuff_group: impl Into<GameObject>,
)
fn ctor( self, game_object: impl Into<GameObject>, foodstuff_item_list: impl Into<List_1<GameObject>>, foodstuff_group: impl Into<GameObject>, )
.ctor(crate::unity_engine::gameobject::GameObject, crate::system::collections::generic::list_1::List_1<crate::unity_engine::gameobject::GameObject>, crate::unity_engine::gameobject::GameObject) overload
Sourcefn show(self, foodstuffs: impl Into<List_1<FoodstuffData>>)
fn show(self, foodstuffs: impl Into<List_1<FoodstuffData>>)
Show(crate::system::collections::generic::list_1::List_1<crate::app::foodstuffdata::FoodstuffData>) overload
Sourcefn set_foodstuffs(self, foodstuffs: impl Into<List_1<FoodstuffData>>)
fn set_foodstuffs(self, foodstuffs: impl Into<List_1<FoodstuffData>>)
SetFoodstuffs(crate::system::collections::generic::list_1::List_1<crate::app::foodstuffdata::FoodstuffData>) overload
Sourcefn set_foodstuff_item(
self,
content_item: impl Into<GameObject>,
data: impl Into<FoodstuffData>,
)
fn set_foodstuff_item( self, content_item: impl Into<GameObject>, data: impl Into<FoodstuffData>, )
SetFoodstuffItem(crate::unity_engine::gameobject::GameObject, crate::app::foodstuffdata::FoodstuffData) 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: IDishAllMenuContent_FoodstuffsHistory> IDishAllMenuContent_FoodstuffsHistoryMethods for __T
Available on crate feature
app-cooking_menu-dishallmenucontent only.