Skip to main content

IFriendListContentMethods

Trait IFriendListContentMethods 

Source
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§

Source

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

set_IsInitialized(bool) overload

Source

fn get_is_initialized(self) -> bool

get_IsInitialized() overload

Source

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

set_IsPageChanging(bool) overload

Source

fn get_is_page_changing(self) -> bool

get_IsPageChanging() overload

Source

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

set_IsShowArrow(bool) overload

Source

fn get_is_show_arrow(self) -> bool

get_IsShowArrow() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

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

Source

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

Source

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

Source

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

Source

fn get_is_chara_change(self) -> bool

get_IsCharaChange() overload

Source

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

set_IsCharaChange(bool) overload

Source

fn get_is_country_change(self) -> bool

get_IsCountryChange() overload

Source

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

set_IsCountryChange(bool) overload

Source

fn hide_arrow(self)

HideArrow() overload

Source

fn show_arrow(self)

ShowArrow() overload

Source

fn ctor(self)

.ctor() 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: IFriendListContent> IFriendListContentMethods for __T

Available on crate feature app-friendlistcontent only.