pub trait IVersusServerRankedMetaDataMethods: IVersusServerRankedMetaData {
Show 18 methods
// Provided methods
fn ctor(self) { ... }
fn clear(self) { ... }
fn set_owner(
self,
principal_id: impl Into<u64>,
name: impl Into<Il2CppString>,
save_id: impl Into<u64>,
) { ... }
fn set_rate(self, rate: impl Into<i32>) { ... }
fn set_screen_shot_data_id(self, data_id: impl Into<u64>) { ... }
fn set_language(self, language: impl Into<Il2CppString>) { ... }
fn copy_from(self, meta_data: impl Into<VersusServerMetaData>) { ... }
fn get_owner_name(self) -> Il2CppString { ... }
fn serialize(self) { ... }
fn deserialize(self) -> bool { ... }
fn dump(self, opt: impl Into<Il2CppString>) { ... }
fn get_owner_id(self) -> u64 { ... }
fn get_save_identifier(self) -> u64 { ... }
fn get_rate(self) -> i32 { ... }
fn get_screen_shot_data_id(self) -> u64 { ... }
fn get_language(self) -> Il2CppString { ... }
fn get_friend_name(self) -> Il2CppString { ... }
fn set_friend_name(self, value: impl Into<Il2CppString>) { ... }
}Provided Methods§
Sourcefn set_owner(
self,
principal_id: impl Into<u64>,
name: impl Into<Il2CppString>,
save_id: impl Into<u64>,
)
fn set_owner( self, principal_id: impl Into<u64>, name: impl Into<Il2CppString>, save_id: impl Into<u64>, )
SetOwner(u64, ::unity::Il2CppString, u64) overload
Sourcefn set_screen_shot_data_id(self, data_id: impl Into<u64>)
fn set_screen_shot_data_id(self, data_id: impl Into<u64>)
SetScreenShotDataId(u64) overload
Sourcefn set_language(self, language: impl Into<Il2CppString>)
fn set_language(self, language: impl Into<Il2CppString>)
SetLanguage(::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 deserialize(self) -> bool
fn deserialize(self) -> bool
Deserialize() overload
Sourcefn dump(self, opt: impl Into<Il2CppString>)
fn dump(self, opt: impl Into<Il2CppString>)
Dump(::unity::Il2CppString) overload
Sourcefn get_owner_id(self) -> u64
fn get_owner_id(self) -> u64
get_OwnerId() overload
Sourcefn get_save_identifier(self) -> u64
fn get_save_identifier(self) -> u64
get_SaveIdentifier() overload
Sourcefn get_screen_shot_data_id(self) -> u64
fn get_screen_shot_data_id(self) -> u64
get_ScreenShotDataId() overload
Sourcefn get_language(self) -> Il2CppString
fn get_language(self) -> Il2CppString
get_Language() 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: IVersusServerRankedMetaData> IVersusServerRankedMetaDataMethods for __T
Available on crate feature
app-versusserverrankedmetadata only.