pub trait IVersusServerMetaDataMethods: IVersusServerMetaData {
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 copy_from(self, meta_data: impl Into<VersusServerMetaData>) { ... }
fn serialize(self) { ... }
fn deserialize(self) -> bool { ... }
fn get_data_id(self) -> u64 { ... }
fn set_data_id(self, value: impl Into<u64>) { ... }
fn get_data_code(self) -> Il2CppString { ... }
fn set_data_code(self, value: impl Into<Il2CppString>) { ... }
fn get_buffer(self) -> Array<u8> { ... }
fn get_size(self) -> i32 { ... }
}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 copy_from(self, meta_data: impl Into<VersusServerMetaData>)
fn copy_from(self, meta_data: impl Into<VersusServerMetaData>)
CopyFrom(crate::app::versusservermetadata::VersusServerMetaData) overload
Sourcefn deserialize(self) -> bool
fn deserialize(self) -> bool
Deserialize() overload
Sourcefn get_data_id(self) -> u64
fn get_data_id(self) -> u64
get_DataId() overload
Sourcefn set_data_id(self, value: impl Into<u64>)
fn set_data_id(self, value: impl Into<u64>)
set_DataId(u64) overload
Sourcefn get_data_code(self) -> Il2CppString
fn get_data_code(self) -> Il2CppString
get_DataCode() overload
Sourcefn set_data_code(self, value: impl Into<Il2CppString>)
fn set_data_code(self, value: impl Into<Il2CppString>)
set_DataCode(::unity::Il2CppString) overload
Sourcefn get_buffer(self) -> Array<u8>
fn get_buffer(self) -> Array<u8>
get_Buffer() 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: IVersusServerMetaData> IVersusServerMetaDataMethods for __T
Available on crate feature
app-versusservermetadata only.