pub trait IVersusUserDataMethods: IVersusUserData {
// Provided methods
fn ctor(self) { ... }
fn clear(self) { ... }
fn set_uploaded_info(self, data_id: impl Into<u64>) { ... }
fn set_rate(self, rate: impl Into<i32>) { ... }
fn dump(self, mess: impl Into<Il2CppString>) { ... }
fn serialize(self, stream: impl Into<Stream_2>) { ... }
fn deserialize(self, stream: impl Into<Stream_2>) { ... }
fn get_data_id(self) -> u64 { ... }
fn get_rate(self) -> i32 { ... }
}Provided Methods§
Sourcefn set_uploaded_info(self, data_id: impl Into<u64>)
fn set_uploaded_info(self, data_id: impl Into<u64>)
SetUploadedInfo(u64) overload
Sourcefn dump(self, mess: impl Into<Il2CppString>)
fn dump(self, mess: impl Into<Il2CppString>)
Dump(::unity::Il2CppString) overload
Sourcefn serialize(self, stream: impl Into<Stream_2>)
fn serialize(self, stream: impl Into<Stream_2>)
Serialize(crate::app::stream_2::Stream_2) overload
Sourcefn deserialize(self, stream: impl Into<Stream_2>)
fn deserialize(self, stream: impl Into<Stream_2>)
Deserialize(crate::app::stream_2::Stream_2) overload
Sourcefn get_data_id(self) -> u64
fn get_data_id(self) -> u64
get_DataId() 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: IVersusUserData> IVersusUserDataMethods for __T
Available on crate feature
app-versususerdata only.