pub trait IFriendListContent: IMonoBehaviour {
// Provided methods
fn m_friend_content_array(self) -> Array<FriendListContent_FriendContent> { ... }
fn set_m_friend_content_array(
self,
value: Array<FriendListContent_FriendContent>,
) { ... }
fn m_active_friend_content_index(self) -> i32 { ... }
fn set_m_active_friend_content_index(self, value: i32) { ... }
fn m_index_animator_array(self) -> Array<Animator> { ... }
fn set_m_index_animator_array(self, value: Array<Animator>) { ... }
}Provided Methods§
fn m_friend_content_array(self) -> Array<FriendListContent_FriendContent>
fn set_m_friend_content_array( self, value: Array<FriendListContent_FriendContent>, )
fn m_active_friend_content_index(self) -> i32
fn set_m_active_friend_content_index(self, value: i32)
fn m_index_animator_array(self) -> Array<Animator>
fn set_m_index_animator_array(self, value: Array<Animator>)
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.