pub trait IVersusMyInfoContentMethods: IVersusMyInfoContent {
// Provided methods
fn destroy(self) { ... }
fn initialize(self) { ... }
fn play_out(self) { ... }
fn play_in_casual(self, my_id_casual: impl Into<Il2CppString>) { ... }
fn play_in_ranked(
self,
my_id_ranked: impl Into<Il2CppString>,
my_rank: impl Into<Il2CppString>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initialize(self)
fn initialize(self)
initialize() overload
Sourcefn play_in_casual(self, my_id_casual: impl Into<Il2CppString>)
fn play_in_casual(self, my_id_casual: impl Into<Il2CppString>)
PlayInCasual(::unity::Il2CppString) overload
Sourcefn play_in_ranked(
self,
my_id_ranked: impl Into<Il2CppString>,
my_rank: impl Into<Il2CppString>,
)
fn play_in_ranked( self, my_id_ranked: impl Into<Il2CppString>, my_rank: impl Into<Il2CppString>, )
PlayInRanked(::unity::Il2CppString, ::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§
impl<__T: IVersusMyInfoContent> IVersusMyInfoContentMethods for __T
Available on crate feature
app-versusmyinfocontent only.