Skip to main content

IVersusUserGlobalDataMethods

Trait IVersusUserGlobalDataMethods 

Source
pub trait IVersusUserGlobalDataMethods: IVersusUserGlobalData {
    // Provided methods
    fn ctor(self) { ... }
    fn clear(self) { ... }
    fn add_reported_id_reserve(self, id: impl Into<u64>) { ... }
    fn contains_reported_list(self, id: impl Into<u64>) -> bool { ... }
    fn commit(self) { ... }
    fn add_reported_id(self, id: impl Into<u64>) { ... }
    fn dump(self) { ... }
    fn get_version(self) -> i32 { ... }
    fn on_serialize(self, stream: impl Into<Stream_2>) { ... }
    fn on_deserialize(
        self,
        stream: impl Into<Stream_2>,
        version: impl Into<i32>,
    ) { ... }
    fn log(self, mess: impl Into<Il2CppString>) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn clear(self)

Clear() overload

Source

fn add_reported_id_reserve(self, id: impl Into<u64>)

AddReportedIDReserve(u64) overload

Source

fn contains_reported_list(self, id: impl Into<u64>) -> bool

ContainsReportedList(u64) overload

Source

fn commit(self)

Commit() overload

Source

fn add_reported_id(self, id: impl Into<u64>)

AddReportedID(u64) overload

Source

fn dump(self)

Dump() overload

Source

fn get_version(self) -> i32

get_Version() overload

Source

fn on_serialize(self, stream: impl Into<Stream_2>)

OnSerialize(crate::app::stream_2::Stream_2) overload

Source

fn on_deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>)

OnDeserialize(crate::app::stream_2::Stream_2, i32) overload

Source

fn log(self, mess: impl Into<Il2CppString>)

Log(::unity::Il2CppString) 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: IVersusUserGlobalData> IVersusUserGlobalDataMethods for __T

Available on crate feature app-versususerglobaldata only.