pub trait IVersusServerReplayMetaDataMethods: IVersusServerReplayMetaData {
Show 24 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 set_map_result(self, result: impl Into<Versus_MapResult>) { ... }
fn try_set_map_end_time(self, unix_time: impl Into<i64>) { ... }
fn set_offense_player(
self,
principal_id: impl Into<u64>,
offense_player_name: impl Into<Il2CppString>,
) { ... }
fn disable(self) { ... }
fn dump(self, opt: impl Into<Il2CppString>) { ... }
fn serialize(self) { ... }
fn deserialize(self) -> bool { ... }
fn get_buffer(self) -> Array<u8> { ... }
fn get_size(self) -> i32 { ... }
fn get_data_id(self) -> u64 { ... }
fn set_data_id(self, value: impl Into<u64>) { ... }
fn get_is_empty(self) -> bool { ... }
fn get_offense_principal_id(self) -> u64 { ... }
fn get_offense_player_name(self) -> Il2CppString { ... }
fn get_map_end_unix_time(self) -> i64 { ... }
fn get_map_end_unix_time_str(self) -> Il2CppString { ... }
fn get_result(self) -> Versus_MapResult { ... }
fn get_result_for_defense(self) -> Versus_MapResult { ... }
fn get_is_enable(self) -> bool { ... }
fn get_is_clear_reliance(self) -> bool { ... }
}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 set_map_result(self, result: impl Into<Versus_MapResult>)
fn set_map_result(self, result: impl Into<Versus_MapResult>)
SetMapResult(crate::app::versus::Versus_MapResult) overload
Sourcefn try_set_map_end_time(self, unix_time: impl Into<i64>)
fn try_set_map_end_time(self, unix_time: impl Into<i64>)
TrySetMapEndTime(i64) overload
Sourcefn set_offense_player(
self,
principal_id: impl Into<u64>,
offense_player_name: impl Into<Il2CppString>,
)
fn set_offense_player( self, principal_id: impl Into<u64>, offense_player_name: impl Into<Il2CppString>, )
SetOffensePlayer(u64, ::unity::Il2CppString) 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_buffer(self) -> Array<u8>
fn get_buffer(self) -> Array<u8>
get_Buffer() 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_is_empty(self) -> bool
fn get_is_empty(self) -> bool
get_IsEmpty() overload
Sourcefn get_offense_principal_id(self) -> u64
fn get_offense_principal_id(self) -> u64
get_OffensePrincipalId() overload
Sourcefn get_offense_player_name(self) -> Il2CppString
fn get_offense_player_name(self) -> Il2CppString
get_OffensePlayerName() overload
Sourcefn get_map_end_unix_time(self) -> i64
fn get_map_end_unix_time(self) -> i64
get_MapEndUnixTime() overload
Sourcefn get_map_end_unix_time_str(self) -> Il2CppString
fn get_map_end_unix_time_str(self) -> Il2CppString
get_MapEndUnixTimeStr() overload
Sourcefn get_result(self) -> Versus_MapResult
fn get_result(self) -> Versus_MapResult
get_Result() overload
Sourcefn get_result_for_defense(self) -> Versus_MapResult
fn get_result_for_defense(self) -> Versus_MapResult
get_ResultForDefense() overload
Sourcefn get_is_enable(self) -> bool
fn get_is_enable(self) -> bool
get_IsEnable() overload
Sourcefn get_is_clear_reliance(self) -> bool
fn get_is_clear_reliance(self) -> bool
get_IsClearReliance() 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: IVersusServerReplayMetaData> IVersusServerReplayMetaDataMethods for __T
app-versusserverreplaymetadata only.