pub trait IRingSelectMenuContent: IBasicMenuContent {
// Provided methods
fn m_root_object(self) -> GameObject { ... }
fn set_m_root_object(self, value: GameObject) { ... }
fn m_page_icon(self) -> List_1<GameObject> { ... }
fn set_m_page_icon(self, value: List_1<GameObject>) { ... }
fn m_page_title(self) -> TextMeshProUGUI { ... }
fn set_m_page_title(self, value: TextMeshProUGUI) { ... }
}Provided Methods§
fn m_root_object(self) -> GameObject
fn set_m_root_object(self, value: GameObject)
fn m_page_icon(self) -> List_1<GameObject>
fn set_m_page_icon(self, value: List_1<GameObject>)
fn m_page_title(self) -> TextMeshProUGUI
fn set_m_page_title(self, value: TextMeshProUGUI)
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.