pub trait IMainMenuSequence_HistoryInfoMethods: IMainMenuSequence_HistoryInfo {
// Provided methods
fn setup(self) { ... }
fn get_window(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
) -> MainMenuSequence_HistoryInfo_Window { ... }
fn fade_in(self) { ... }
fn fade_out(self) { ... }
fn show_window(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
) { ... }
fn hide_window(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
) { ... }
fn set_history_text(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
text: impl Into<Il2CppString>,
) { ... }
fn clear_history_text(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_window(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
) -> MainMenuSequence_HistoryInfo_Window
fn get_window( self, info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>, ) -> MainMenuSequence_HistoryInfo_Window
GetWindow(crate::app::mainmenusequence::MainMenuSequence_HistoryInfo_InfoKind) overload
Sourcefn show_window(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
)
fn show_window( self, info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>, )
ShowWindow(crate::app::mainmenusequence::MainMenuSequence_HistoryInfo_InfoKind) overload
Sourcefn hide_window(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
)
fn hide_window( self, info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>, )
HideWindow(crate::app::mainmenusequence::MainMenuSequence_HistoryInfo_InfoKind) overload
Sourcefn set_history_text(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
text: impl Into<Il2CppString>,
)
fn set_history_text( self, info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>, text: impl Into<Il2CppString>, )
SetHistoryText(crate::app::mainmenusequence::MainMenuSequence_HistoryInfo_InfoKind, ::unity::Il2CppString) overload
Sourcefn clear_history_text(
self,
info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>,
)
fn clear_history_text( self, info_kind: impl Into<MainMenuSequence_HistoryInfo_InfoKind>, )
ClearHistoryText(crate::app::mainmenusequence::MainMenuSequence_HistoryInfo_InfoKind) 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: IMainMenuSequence_HistoryInfo> IMainMenuSequence_HistoryInfoMethods for __T
Available on crate feature
app-mainmenusequence only.