pub trait IPhotographSelectAreaMenu_MenuItemMethods: IPhotographSelectAreaMenu_MenuItem {
// Provided methods
fn get_area_data(self) -> PhotographSpotData { ... }
fn ctor(
self,
area_data: impl Into<PhotographSpotData>,
select_handler: impl Into<PhotographSelectAreaMenu_SelectHandler>,
) { ... }
fn get_name(self) -> Il2CppString { ... }
fn on_select(self) { ... }
fn a_call(self) -> BasicMenu_Result { ... }
fn b_call(self) -> BasicMenu_Result { ... }
}Provided Methods§
Sourcefn get_area_data(self) -> PhotographSpotData
fn get_area_data(self) -> PhotographSpotData
get_AreaData() overload
Sourcefn ctor(
self,
area_data: impl Into<PhotographSpotData>,
select_handler: impl Into<PhotographSelectAreaMenu_SelectHandler>,
)
fn ctor( self, area_data: impl Into<PhotographSpotData>, select_handler: impl Into<PhotographSelectAreaMenu_SelectHandler>, )
.ctor(crate::app::photographspotdata::PhotographSpotData, crate::app::photographselectareamenu::PhotographSelectAreaMenu_SelectHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() 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: IPhotographSelectAreaMenu_MenuItem> IPhotographSelectAreaMenu_MenuItemMethods for __T
Available on crate feature
app-photographselectareamenu only.