Skip to main content

IMyRoomWakeupSelectMenuItemMethods

Trait IMyRoomWakeupSelectMenuItemMethods 

Source
pub trait IMyRoomWakeupSelectMenuItemMethods: IMyRoomWakeupSelectMenuItem {
Show 20 methods // Provided methods fn get_is_selected(self) -> bool { ... } fn set_is_selected(self, value: impl Into<bool>) { ... } fn get_is_talk(self) -> bool { ... } fn set_is_talk(self, value: impl Into<bool>) { ... } fn get_cursor(self) -> MyRoomWakeupSelectRoot_CursorTop { ... } fn get_is_blank(self) -> bool { ... } fn get_is_a_plus(self) -> bool { ... } fn get_command_color(self) -> Color { ... } fn can_start( self, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, ) -> bool { ... } fn get_sort_order(self) -> i32 { ... } fn get_open_count(self) -> i32 { ... } fn ctor(self, unit_l: impl Into<Unit>, unit_r: impl Into<Unit>) { ... } fn update_talk(self) { ... } fn build_attribute(self) -> BasicMenuItem_Attribute { ... } fn on_select(self) { ... } fn a_call(self) -> BasicMenu_Result { ... } fn start_rank_select( self, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, ) { ... } fn b_call(self) -> BasicMenu_Result { ... } fn get_unit_l(self) -> Unit { ... } fn get_unit_r(self) -> Unit { ... }
}

Provided Methods§

Source

fn get_is_selected(self) -> bool

get_IsSelected() overload

Source

fn set_is_selected(self, value: impl Into<bool>)

set_IsSelected(bool) overload

Source

fn get_is_talk(self) -> bool

get_IsTalk() overload

Source

fn set_is_talk(self, value: impl Into<bool>)

set_IsTalk(bool) overload

Source

fn get_cursor(self) -> MyRoomWakeupSelectRoot_CursorTop

get_Cursor() overload

Source

fn get_is_blank(self) -> bool

get_IsBlank() overload

Source

fn get_is_a_plus(self) -> bool

get_IsAPlus() overload

Source

fn get_command_color(self) -> Color

GetCommandColor() overload

Source

fn can_start( self, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, ) -> bool

CanStart(crate::app::reliancedata::RelianceData_Level, crate::app::gamesound::GameSound_WakeupVoicePattern) overload

Source

fn get_sort_order(self) -> i32

GetSortOrder() overload

Source

fn get_open_count(self) -> i32

GetOpenCount() overload

Source

fn ctor(self, unit_l: impl Into<Unit>, unit_r: impl Into<Unit>)

.ctor(crate::app::unit::Unit, crate::app::unit::Unit) overload

Source

fn update_talk(self)

UpdateTalk() overload

Source

fn build_attribute(self) -> BasicMenuItem_Attribute

BuildAttribute() overload

Source

fn on_select(self)

OnSelect() overload

Source

fn a_call(self) -> BasicMenu_Result

ACall() overload

Source

fn start_rank_select( self, level: impl Into<RelianceData_Level>, pattern: impl Into<GameSound_WakeupVoicePattern>, )

StartRankSelect(crate::app::reliancedata::RelianceData_Level, crate::app::gamesound::GameSound_WakeupVoicePattern) overload

Source

fn b_call(self) -> BasicMenu_Result

BCall() overload

Source

fn get_unit_l(self) -> Unit

GetUnitL() overload

Source

fn get_unit_r(self) -> Unit

GetUnitR() 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§

Source§

impl<__T: IMyRoomWakeupSelectMenuItem> IMyRoomWakeupSelectMenuItemMethods for __T

Available on crate feature app-myroomwakeupselectmenuitem only.