pub trait IFriendListContentMethods: IFriendListContent {
Show 19 methods
// Provided methods
fn set_is_initialized(self, value: impl Into<bool>) { ... }
fn get_is_initialized(self) -> bool { ... }
fn set_is_page_changing(self, value: impl Into<bool>) { ... }
fn get_is_page_changing(self) -> bool { ... }
fn set_is_show_arrow(self, value: impl Into<bool>) { ... }
fn get_is_show_arrow(self) -> bool { ... }
fn start(self) { ... }
fn update(self) { ... }
fn set_friend_data_core(
self,
friend_data: impl Into<FriendListData>,
chara_image_sprite: impl Into<Sprite>,
stamp_sprite: impl Into<Sprite>,
) { ... }
fn init_country_tag(self, data_array: impl Into<List_1<FriendListData>>) { ... }
fn set_friend_data_at_first(
self,
friend_data: impl Into<FriendListData>,
chara_image_sprite: impl Into<Sprite>,
stamp_sprite: impl Into<Sprite>,
) { ... }
fn set_friend_data(
self,
friend_data: impl Into<FriendListData>,
chara_image_sprite: impl Into<Sprite>,
stamp_sprite: impl Into<Sprite>,
) { ... }
fn get_is_chara_change(self) -> bool { ... }
fn set_is_chara_change(self, value: impl Into<bool>) { ... }
fn get_is_country_change(self) -> bool { ... }
fn set_is_country_change(self, value: impl Into<bool>) { ... }
fn hide_arrow(self) { ... }
fn show_arrow(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_is_initialized(self, value: impl Into<bool>)
fn set_is_initialized(self, value: impl Into<bool>)
set_IsInitialized(bool) overload
Sourcefn get_is_initialized(self) -> bool
fn get_is_initialized(self) -> bool
get_IsInitialized() overload
Sourcefn set_is_page_changing(self, value: impl Into<bool>)
fn set_is_page_changing(self, value: impl Into<bool>)
set_IsPageChanging(bool) overload
Sourcefn get_is_page_changing(self) -> bool
fn get_is_page_changing(self) -> bool
get_IsPageChanging() overload
Sourcefn set_is_show_arrow(self, value: impl Into<bool>)
fn set_is_show_arrow(self, value: impl Into<bool>)
set_IsShowArrow(bool) overload
Sourcefn get_is_show_arrow(self) -> bool
fn get_is_show_arrow(self) -> bool
get_IsShowArrow() overload
Sourcefn set_friend_data_core(
self,
friend_data: impl Into<FriendListData>,
chara_image_sprite: impl Into<Sprite>,
stamp_sprite: impl Into<Sprite>,
)
fn set_friend_data_core( self, friend_data: impl Into<FriendListData>, chara_image_sprite: impl Into<Sprite>, stamp_sprite: impl Into<Sprite>, )
SetFriendDataCore(crate::app::friendlistdata::FriendListData, crate::unity_engine::sprite::Sprite, crate::unity_engine::sprite::Sprite) overload
Sourcefn init_country_tag(self, data_array: impl Into<List_1<FriendListData>>)
fn init_country_tag(self, data_array: impl Into<List_1<FriendListData>>)
InitCountryTag(crate::system::collections::generic::list_1::List_1<crate::app::friendlistdata::FriendListData>) overload
Sourcefn set_friend_data_at_first(
self,
friend_data: impl Into<FriendListData>,
chara_image_sprite: impl Into<Sprite>,
stamp_sprite: impl Into<Sprite>,
)
fn set_friend_data_at_first( self, friend_data: impl Into<FriendListData>, chara_image_sprite: impl Into<Sprite>, stamp_sprite: impl Into<Sprite>, )
SetFriendDataAtFirst(crate::app::friendlistdata::FriendListData, crate::unity_engine::sprite::Sprite, crate::unity_engine::sprite::Sprite) overload
Sourcefn set_friend_data(
self,
friend_data: impl Into<FriendListData>,
chara_image_sprite: impl Into<Sprite>,
stamp_sprite: impl Into<Sprite>,
)
fn set_friend_data( self, friend_data: impl Into<FriendListData>, chara_image_sprite: impl Into<Sprite>, stamp_sprite: impl Into<Sprite>, )
SetFriendData(crate::app::friendlistdata::FriendListData, crate::unity_engine::sprite::Sprite, crate::unity_engine::sprite::Sprite) overload
Sourcefn get_is_chara_change(self) -> bool
fn get_is_chara_change(self) -> bool
get_IsCharaChange() overload
Sourcefn set_is_chara_change(self, value: impl Into<bool>)
fn set_is_chara_change(self, value: impl Into<bool>)
set_IsCharaChange(bool) overload
Sourcefn get_is_country_change(self) -> bool
fn get_is_country_change(self) -> bool
get_IsCountryChange() overload
Sourcefn set_is_country_change(self, value: impl Into<bool>)
fn set_is_country_change(self, value: impl Into<bool>)
set_IsCountryChange(bool) overload
Sourcefn hide_arrow(self)
fn hide_arrow(self)
HideArrow() overload
Sourcefn show_arrow(self)
fn show_arrow(self)
ShowArrow() 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: IFriendListContent> IFriendListContentMethods for __T
app-friendlistcontent only.