pub trait IPhotographSelectPauseMenuMethods: IPhotographSelectPauseMenu {
// Provided methods
fn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
dispos_manager: impl Into<PhotographDisposManager>,
update_ui_obj_handler: impl Into<PhotographSelectPauseMenu_UpdateUIObjHandler>,
) { ... }
fn key_left(self, is_trigger: impl Into<bool>) { ... }
fn key_right(self, is_trigger: impl Into<bool>) { ... }
fn get_name(self) -> Il2CppString { ... }
}Provided Methods§
Sourcefn ctor(
self,
menu_item_list: impl Into<List_1<BasicMenuItem>>,
menu_content: impl Into<BasicMenuContent>,
dispos_manager: impl Into<PhotographDisposManager>,
update_ui_obj_handler: impl Into<PhotographSelectPauseMenu_UpdateUIObjHandler>,
)
fn ctor( self, menu_item_list: impl Into<List_1<BasicMenuItem>>, menu_content: impl Into<BasicMenuContent>, dispos_manager: impl Into<PhotographDisposManager>, update_ui_obj_handler: impl Into<PhotographSelectPauseMenu_UpdateUIObjHandler>, )
.ctor(crate::system::collections::generic::list_1::List_1<crate::app::basicmenuitem::BasicMenuItem>, crate::app::basicmenucontent::BasicMenuContent, crate::app::photographdisposmanager::PhotographDisposManager, crate::app::photographselectpausemenu::PhotographSelectPauseMenu_UpdateUIObjHandler) overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() 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: IPhotographSelectPauseMenu> IPhotographSelectPauseMenuMethods for __T
Available on crate feature
app-photographselectpausemenu only.