pub trait IMascotFoodSelectMenuItemMethods: IMascotFoodSelectMenuItem {
// Provided methods
fn get_is_active(self) -> bool { ... }
fn set_is_active(self, value: impl Into<bool>) { ... }
fn get_is_active_select(self) -> bool { ... }
fn set_is_active_select(self, value: impl Into<bool>) { ... }
fn get_data(self) -> FoodstuffData { ... }
fn ctor(self, food_stuff_data: impl Into<FoodstuffData>) { ... }
fn get_name(self) -> Il2CppString { ... }
fn get_count_text(self) -> Il2CppString { ... }
fn build_attribute(self) -> BasicMenuItem_Attribute { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_is_active(self) -> bool
fn get_is_active(self) -> bool
get_IsActive() overload
Sourcefn set_is_active(self, value: impl Into<bool>)
fn set_is_active(self, value: impl Into<bool>)
set_IsActive(bool) overload
Sourcefn get_is_active_select(self) -> bool
fn get_is_active_select(self) -> bool
get_IsActiveSelect() overload
Sourcefn set_is_active_select(self, value: impl Into<bool>)
fn set_is_active_select(self, value: impl Into<bool>)
set_IsActiveSelect(bool) overload
Sourcefn get_data(self) -> FoodstuffData
fn get_data(self) -> FoodstuffData
get_Data() overload
Sourcefn ctor(self, food_stuff_data: impl Into<FoodstuffData>)
fn ctor(self, food_stuff_data: impl Into<FoodstuffData>)
.ctor(crate::app::foodstuffdata::FoodstuffData) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_count_text(self) -> Il2CppString
fn get_count_text(self) -> Il2CppString
GetCountText() overload
Sourcefn build_attribute(self) -> BasicMenuItem_Attribute
fn build_attribute(self) -> BasicMenuItem_Attribute
BuildAttribute() overload
Sourcefn a_call(self) -> BasicMenu_Result
fn a_call(self) -> BasicMenu_Result
ACall() overload
Sourcefn b_call(self) -> BasicMenu_Result
fn b_call(self) -> BasicMenu_Result
BCall() 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: IMascotFoodSelectMenuItem> IMascotFoodSelectMenuItemMethods for __T
Available on crate feature
app-mascotfoodselectmenuitem only.