pub trait IBasicMenuItem: IObject {
Show 18 methods
// Provided methods
fn m_menu(self) -> BasicMenu { ... }
fn set_m_menu(self, value: BasicMenu) { ... }
fn m_menu_item_content(self) -> BasicMenuItemContent { ... }
fn set_m_menu_item_content(self, value: BasicMenuItemContent) { ... }
fn m_name(self) -> Il2CppString { ... }
fn set_m_name(self, value: Il2CppString) { ... }
fn m_index(self) -> i32 { ... }
fn set_m_index(self, value: i32) { ... }
fn m_full_index(self) -> i32 { ... }
fn set_m_full_index(self, value: i32) { ... }
fn m_attribute(self) -> BasicMenuItem_Attribute { ... }
fn set_m_attribute(self, value: BasicMenuItem_Attribute) { ... }
fn m_cursor_color(self) -> Color { ... }
fn set_m_cursor_color(self, value: Color) { ... }
fn m_active_text_color(self) -> Color { ... }
fn set_m_active_text_color(self, value: Color) { ... }
fn m_inactive_text_color(self) -> Color { ... }
fn set_m_inactive_text_color(self, value: Color) { ... }
}Provided Methods§
fn m_name(self) -> Il2CppString
fn set_m_name(self, value: Il2CppString)
fn m_index(self) -> i32
fn set_m_index(self, value: i32)
fn m_full_index(self) -> i32
fn set_m_full_index(self, value: i32)
fn m_attribute(self) -> BasicMenuItem_Attribute
fn set_m_attribute(self, value: BasicMenuItem_Attribute)
fn m_cursor_color(self) -> Color
fn set_m_cursor_color(self, value: Color)
fn m_active_text_color(self) -> Color
fn set_m_active_text_color(self, value: Color)
fn m_inactive_text_color(self) -> Color
fn set_m_inactive_text_color(self, value: Color)
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.