Skip to main content

IContextMenu

Trait IContextMenu 

Source
pub trait IContextMenu: SystemObject {
    // Provided methods
    fn menu_item(self) -> Il2CppString { ... }
    fn set_menu_item(self, value: Il2CppString) { ... }
    fn validate(self) -> bool { ... }
    fn set_validate(self, value: bool) { ... }
    fn priority(self) -> i32 { ... }
    fn set_priority(self, value: i32) { ... }
}

Provided Methods§

Source

fn menu_item(self) -> Il2CppString

Source

fn set_menu_item(self, value: Il2CppString)

Source

fn validate(self) -> bool

Source

fn set_validate(self, value: bool)

Source

fn priority(self) -> i32

Source

fn set_priority(self, value: i32)

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§