pub trait IPhotographSelectPauseMenuItem: IBasicMenuItem {
// Provided methods
fn m_pause_data(self) -> PhotographPauseData { ... }
fn set_m_pause_data(self, value: PhotographPauseData) { ... }
fn m_dispos_manager(self) -> PhotographDisposManager { ... }
fn set_m_dispos_manager(self, value: PhotographDisposManager) { ... }
fn m_is_current_pause(self) -> bool { ... }
fn set_m_is_current_pause(self, value: bool) { ... }
fn m_character_id(self) -> Il2CppString { ... }
fn set_m_character_id(self, value: Il2CppString) { ... }
}Provided Methods§
fn m_pause_data(self) -> PhotographPauseData
fn set_m_pause_data(self, value: PhotographPauseData)
fn m_dispos_manager(self) -> PhotographDisposManager
fn set_m_dispos_manager(self, value: PhotographDisposManager)
fn m_is_current_pause(self) -> bool
fn set_m_is_current_pause(self, value: bool)
fn m_character_id(self) -> Il2CppString
fn set_m_character_id(self, value: Il2CppString)
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.