pub trait IVersusServerReportMetaDataMethods: IVersusServerReportMetaData {
Show 13 methods
// Provided methods
fn ctor(self) { ... }
fn clear(self) { ... }
fn set_binary(self, bin: impl Into<Array<u8>>) { ... }
fn set_binary_2(self, bin: impl Into<List_1<u8>>) { ... }
fn get_binary(self) -> List_1<u8> { ... }
fn add_data_id(self, data_id: impl Into<u64>) { ... }
fn contains(self, data_id: impl Into<u64>) -> bool { ... }
fn get_buffer(self) -> Array<u8> { ... }
fn get_size(self) -> i32 { ... }
fn dump(self) { ... }
fn to_string_i_ds(self) -> Il2CppString { ... }
fn serialize(self) { ... }
fn deserialize(self) { ... }
}Provided Methods§
Sourcefn set_binary(self, bin: impl Into<Array<u8>>)
fn set_binary(self, bin: impl Into<Array<u8>>)
SetBinary(::unity::Array<u8>) overload
Sourcefn set_binary_2(self, bin: impl Into<List_1<u8>>)
fn set_binary_2(self, bin: impl Into<List_1<u8>>)
SetBinary(crate::system::collections::generic::list_1::List_1<u8>) overload
Sourcefn get_binary(self) -> List_1<u8>
fn get_binary(self) -> List_1<u8>
GetBinary() overload
Sourcefn add_data_id(self, data_id: impl Into<u64>)
fn add_data_id(self, data_id: impl Into<u64>)
AddDataId(u64) overload
Sourcefn get_buffer(self) -> Array<u8>
fn get_buffer(self) -> Array<u8>
get_Buffer() overload
Sourcefn to_string_i_ds(self) -> Il2CppString
fn to_string_i_ds(self) -> Il2CppString
ToStringIDs() overload
Sourcefn deserialize(self)
fn deserialize(self)
Deserialize() 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: IVersusServerReportMetaData> IVersusServerReportMetaDataMethods for __T
Available on crate feature
app-versusserverreportmetadata only.