Skip to main content

IVersusServerReplayMetaDataMethods

Trait IVersusServerReplayMetaDataMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn set_binary(self, bin: impl Into<Array<u8>>)

SetBinary(::unity::Array<u8>) overload

Source

fn set_binary_2(self, bin: impl Into<List_1<u8>>)

SetBinary(crate::system::collections::generic::list_1::List_1<u8>) overload

Source

fn set_map_result(self, result: impl Into<Versus_MapResult>)

SetMapResult(crate::app::versus::Versus_MapResult) overload

Source

fn try_set_map_end_time(self, unix_time: impl Into<i64>)

TrySetMapEndTime(i64) overload

Source

fn set_offense_player( self, principal_id: impl Into<u64>, offense_player_name: impl Into<Il2CppString>, )

SetOffensePlayer(u64, ::unity::Il2CppString) overload

Source

fn disable(self)

Disable() overload

Source

fn dump(self, opt: impl Into<Il2CppString>)

Dump(::unity::Il2CppString) overload

Source

fn serialize(self)

Serialize() overload

Source

fn deserialize(self) -> bool

Deserialize() overload

Source

fn get_buffer(self) -> Array<u8>

get_Buffer() overload

Source

fn get_size(self) -> i32

get_Size() overload

Source

fn get_data_id(self) -> u64

get_DataId() overload

Source

fn set_data_id(self, value: impl Into<u64>)

set_DataId(u64) overload

Source

fn get_is_empty(self) -> bool

get_IsEmpty() overload

Source

fn get_offense_principal_id(self) -> u64

get_OffensePrincipalId() overload

Source

fn get_offense_player_name(self) -> Il2CppString

get_OffensePlayerName() overload

Source

fn get_map_end_unix_time(self) -> i64

get_MapEndUnixTime() overload

Source

fn get_map_end_unix_time_str(self) -> Il2CppString

get_MapEndUnixTimeStr() overload

Source

fn get_result(self) -> Versus_MapResult

get_Result() overload

Source

fn get_result_for_defense(self) -> Versus_MapResult

get_ResultForDefense() overload

Source

fn get_is_enable(self) -> bool

get_IsEnable() overload

Source

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§

Source§

impl<__T: IVersusServerReplayMetaData> IVersusServerReplayMetaDataMethods for __T

Available on crate feature app-versusserverreplaymetadata only.