pub trait IHubCookingStartMenuSequence: IProcInst {
// Provided methods
fn m_decide_callback(self) -> HubCookingStartMenuSequence_DecideEventHandler { ... }
fn set_m_decide_callback(
self,
value: HubCookingStartMenuSequence_DecideEventHandler,
) { ... }
fn m_end_callback(self) -> Action { ... }
fn set_m_end_callback(self, value: Action) { ... }
fn m_select_unit_list(self) -> List_1<Unit> { ... }
fn set_m_select_unit_list(self, value: List_1<Unit>) { ... }
fn m_select_food(self) -> FoodData { ... }
fn set_m_select_food(self, value: FoodData) { ... }
fn m_select_foodstuff_list(self) -> List_1<FoodstuffData> { ... }
fn set_m_select_foodstuff_list(self, value: List_1<FoodstuffData>) { ... }
fn m_all_content(self) -> DishAllMenuContent { ... }
fn set_m_all_content(self, value: DishAllMenuContent) { ... }
}Provided Methods§
fn m_decide_callback(self) -> HubCookingStartMenuSequence_DecideEventHandler
fn set_m_decide_callback( self, value: HubCookingStartMenuSequence_DecideEventHandler, )
fn m_end_callback(self) -> Action
fn set_m_end_callback(self, value: Action)
fn m_select_unit_list(self) -> List_1<Unit>
fn set_m_select_unit_list(self, value: List_1<Unit>)
fn m_select_food(self) -> FoodData
fn set_m_select_food(self, value: FoodData)
fn m_select_foodstuff_list(self) -> List_1<FoodstuffData>
fn set_m_select_foodstuff_list(self, value: List_1<FoodstuffData>)
fn m_all_content(self) -> DishAllMenuContent
fn set_m_all_content(self, value: DishAllMenuContent)
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.