Skip to main content

IDishAllMenuContent_FoodstuffsHistoryMethods

Trait IDishAllMenuContent_FoodstuffsHistoryMethods 

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

Source

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

Source

fn show(self, foodstuffs: impl Into<List_1<FoodstuffData>>)

Show(crate::system::collections::generic::list_1::List_1<crate::app::foodstuffdata::FoodstuffData>) overload

Source

fn set_foodstuffs(self, foodstuffs: impl Into<List_1<FoodstuffData>>)

SetFoodstuffs(crate::system::collections::generic::list_1::List_1<crate::app::foodstuffdata::FoodstuffData>) overload

Source

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

Source

fn hide(self)

Hide() 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: IDishAllMenuContent_FoodstuffsHistory> IDishAllMenuContent_FoodstuffsHistoryMethods for __T

Available on crate feature app-cooking_menu-dishallmenucontent only.