pub trait ISeparatorItemMethods: ISeparatorItem {
// Provided methods
fn get_name(self) -> Il2CppString { ... }
fn get_height(self) -> f32 { ... }
fn get_back_color(self) -> Color { ... }
fn is_selectable(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() overload
Sourcefn get_height(self) -> f32
fn get_height(self) -> f32
GetHeight() overload
Sourcefn get_back_color(self) -> Color
fn get_back_color(self) -> Color
GetBackColor() overload
Sourcefn is_selectable(self) -> bool
fn is_selectable(self) -> bool
IsSelectable() 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: ISeparatorItem> ISeparatorItemMethods for __T
Available on crate feature
app-separatoritem only.