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§
Sourcefn set_owner_info(
self,
owner_id: impl Into<u64>,
owner_name: impl Into<Il2CppString>,
)
fn set_owner_info( self, owner_id: impl Into<u64>, owner_name: impl Into<Il2CppString>, )
SetOwnerInfo(u64, ::unity::Il2CppString) overload
Sourcefn copy_from(self, meta_data: impl Into<VersusServerMetaData>)
fn copy_from(self, meta_data: impl Into<VersusServerMetaData>)
CopyFrom(crate::app::versusservermetadata::VersusServerMetaData) overload
Sourcefn get_owner_name(self) -> Il2CppString
fn get_owner_name(self) -> Il2CppString
GetOwnerName() overload
Sourcefn dump(self, opt: impl Into<Il2CppString>)
fn dump(self, opt: impl Into<Il2CppString>)
Dump(::unity::Il2CppString) overload
Sourcefn deserialize(self) -> bool
fn deserialize(self) -> bool
Deserialize() overload
Sourcefn get_owner_id(self) -> u64
fn get_owner_id(self) -> u64
get_OwnerId() overload
Sourcefn get_friend_name(self) -> Il2CppString
fn get_friend_name(self) -> Il2CppString
get_FriendName() overload
Sourcefn set_friend_name(self, value: impl Into<Il2CppString>)
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§
impl<__T: IVersusServerCasualMetaData> IVersusServerCasualMetaDataMethods for __T
Available on crate feature
app-versusservercasualmetadata only.