Skip to main content

IVersusServerCasualMetaDataMethods

Trait IVersusServerCasualMetaDataMethods 

Source
pub trait IVersusServerCasualMetaDataMethods: IVersusServerCasualMetaData {
    // Provided methods
    fn ctor(self) { ... }
    fn clear(self) { ... }
    fn set_owner_info(
        self,
        owner_id: impl Into<u64>,
        owner_name: impl Into<Il2CppString>,
    ) { ... }
    fn copy_from(self, meta_data: impl Into<VersusServerMetaData>) { ... }
    fn get_owner_name(self) -> Il2CppString { ... }
    fn dump(self, opt: impl Into<Il2CppString>) { ... }
    fn serialize(self) { ... }
    fn deserialize(self) -> bool { ... }
    fn get_owner_id(self) -> u64 { ... }
    fn get_friend_name(self) -> Il2CppString { ... }
    fn set_friend_name(self, value: impl Into<Il2CppString>) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn set_owner_info( self, owner_id: impl Into<u64>, owner_name: impl Into<Il2CppString>, )

SetOwnerInfo(u64, ::unity::Il2CppString) overload

Source

fn copy_from(self, meta_data: impl Into<VersusServerMetaData>)

CopyFrom(crate::app::versusservermetadata::VersusServerMetaData) overload

Source

fn get_owner_name(self) -> Il2CppString

GetOwnerName() overload

Source

fn dump(self, opt: impl Into<Il2CppString>)

Dump(::unity::Il2CppString) overload

Source

fn serialize(self)

Serialize() overload

Source

fn deserialize(self) -> bool

Deserialize() overload

Source

fn get_owner_id(self) -> u64

get_OwnerId() overload

Source

fn get_friend_name(self) -> Il2CppString

get_FriendName() overload

Source

fn set_friend_name(self, value: impl Into<Il2CppString>)

set_FriendName(::unity::Il2CppString) 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: IVersusServerCasualMetaData> IVersusServerCasualMetaDataMethods for __T

Available on crate feature app-versusservercasualmetadata only.