pub trait ITroopListSortMenu_SortTitleMethods: ITroopListSortMenu_SortTitle {
// Provided methods
fn setup(
self,
page: impl Into<i32>,
title: impl Into<Il2CppString>,
type: impl Into<TroopListSortMenu_SortType>,
) { ... }
fn set_arrow(self, set_arrow: impl Into<Sprite>) { ... }
fn set_arrow_hide(self) { ... }
fn get_page(self) -> i32 { ... }
fn get_sort_type(self) -> TroopListSortMenu_SortType { ... }
fn get_cursor_rect_transform(self) -> RectTransform { ... }
fn set_text_color(self, is_active: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn setup(
self,
page: impl Into<i32>,
title: impl Into<Il2CppString>,
type: impl Into<TroopListSortMenu_SortType>,
)
fn setup( self, page: impl Into<i32>, title: impl Into<Il2CppString>, type: impl Into<TroopListSortMenu_SortType>, )
Setup(i32, ::unity::Il2CppString, crate::app::trooplistsortmenu::TroopListSortMenu_SortType) overload
Sourcefn set_arrow(self, set_arrow: impl Into<Sprite>)
fn set_arrow(self, set_arrow: impl Into<Sprite>)
SetArrow(crate::unity_engine::sprite::Sprite) overload
Sourcefn set_arrow_hide(self)
fn set_arrow_hide(self)
SetArrowHide() overload
Sourcefn get_sort_type(self) -> TroopListSortMenu_SortType
fn get_sort_type(self) -> TroopListSortMenu_SortType
GetSortType() overload
Sourcefn get_cursor_rect_transform(self) -> RectTransform
fn get_cursor_rect_transform(self) -> RectTransform
GetCursorRectTransform() overload
Sourcefn set_text_color(self, is_active: impl Into<bool>)
fn set_text_color(self, is_active: impl Into<bool>)
SetTextColor(bool) 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: ITroopListSortMenu_SortTitle> ITroopListSortMenu_SortTitleMethods for __T
Available on crate feature
app-trooplistsortmenu only.