pub trait IRewindMenuItemContentMethods: IRewindMenuItemContent {
Show 19 methods
// Provided methods
fn ctor(self) { ... }
fn awake(self) { ... }
fn show(self) { ... }
fn hide(self) { ... }
fn set_enable_image_and_text(self, enable: impl Into<bool>) { ... }
fn set_select_color(self, color: impl Into<Color>) { ... }
fn build(self, menu_item: impl Into<BasicMenuItem>) { ... }
fn disable(self) { ... }
fn setup_by_menu_item(
self,
rewind_menu_item: impl Into<RewindMenu_MenuItem>,
) { ... }
fn get_menu_item(
self,
menu_pos_index: impl Into<i32>,
) -> RewindMenu_MenuItem { ... }
fn is_anim_state_name(self, state_name: impl Into<Il2CppString>) -> bool { ... }
fn is_move_anim_state(
self,
from: impl Into<i32>,
to: impl Into<i32>,
) -> bool { ... }
fn is_moving(self) -> bool { ... }
fn move_up(self) { ... }
fn move_down(self) { ... }
fn move_up_imm(self) { ... }
fn move_down_imm(self) { ... }
fn play_anim_move_up(self) { ... }
fn play_anim_move_down(self) { ... }
}Provided Methods§
Sourcefn set_enable_image_and_text(self, enable: impl Into<bool>)
fn set_enable_image_and_text(self, enable: impl Into<bool>)
SetEnableImageAndText(bool) overload
Sourcefn set_select_color(self, color: impl Into<Color>)
fn set_select_color(self, color: impl Into<Color>)
SetSelectColor(crate::unity_engine::color::Color) overload
Sourcefn build(self, menu_item: impl Into<BasicMenuItem>)
fn build(self, menu_item: impl Into<BasicMenuItem>)
Build(crate::app::basicmenuitem::BasicMenuItem) overload
SetupByMenuItem(crate::app::rewindmenu::RewindMenu_MenuItem) overload
GetMenuItem(i32) overload
Sourcefn is_anim_state_name(self, state_name: impl Into<Il2CppString>) -> bool
fn is_anim_state_name(self, state_name: impl Into<Il2CppString>) -> bool
IsAnimStateName(::unity::Il2CppString) overload
Sourcefn is_move_anim_state(self, from: impl Into<i32>, to: impl Into<i32>) -> bool
fn is_move_anim_state(self, from: impl Into<i32>, to: impl Into<i32>) -> bool
IsMoveAnimState(i32, i32) overload
Sourcefn move_up_imm(self)
fn move_up_imm(self)
MoveUpImm() overload
Sourcefn move_down_imm(self)
fn move_down_imm(self)
MoveDownImm() overload
Sourcefn play_anim_move_up(self)
fn play_anim_move_up(self)
PlayAnimMoveUp() overload
Sourcefn play_anim_move_down(self)
fn play_anim_move_down(self)
PlayAnimMoveDown() 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: IRewindMenuItemContent> IRewindMenuItemContentMethods for __T
Available on crate feature
app-rewindmenuitemcontent only.