Skip to main content

IMascotFoodEatSequenceMethods

Trait IMascotFoodEatSequenceMethods 

Source
pub trait IMascotFoodEatSequenceMethods: IMascotFoodEatSequence {
    // Provided methods
    fn ctor(self, foodstuff_data: impl Into<FoodstuffData>) { ... }
    fn get_player_controller(self) -> HubPlayerController { ... }
    fn get_player(self) -> HubUnitController { ... }
    fn get_mascot(self) -> HubMascotController { ... }
    fn init_eat_food(self) { ... }
    fn eat_food(self) -> IEnumerator { ... }
    fn exit_eat_food(self) { ... }
    fn get_bond(self) { ... }
    fn create_desc(self) -> Array<ProcDesc> { ... }
}

Provided Methods§

Source

fn ctor(self, foodstuff_data: impl Into<FoodstuffData>)

.ctor(crate::app::foodstuffdata::FoodstuffData) overload

Source

fn get_player_controller(self) -> HubPlayerController

get_PlayerController() overload

Source

fn get_player(self) -> HubUnitController

get_Player() overload

Source

fn get_mascot(self) -> HubMascotController

get_Mascot() overload

Source

fn init_eat_food(self)

InitEatFood() overload

Source

fn eat_food(self) -> IEnumerator

EatFood() overload

Source

fn exit_eat_food(self)

ExitEatFood() overload

Source

fn get_bond(self)

GetBond() overload

Source

fn create_desc(self) -> Array<ProcDesc>

CreateDesc() 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: IMascotFoodEatSequence> IMascotFoodEatSequenceMethods for __T

Available on crate feature app-mascotfoodeatsequence only.