pub trait INexVersus_UploadSequenceMethods: INexVersus_UploadSequence {
// Provided methods
fn ctor(
self,
player_name: impl Into<Il2CppString>,
meta_data: impl Into<VersusServerRankedMetaData>,
data: impl Into<VersusServerRankedData>,
data_type: impl Into<u16>,
png_bytes: impl Into<Array<u8>>,
) { ... }
fn postlogin(self) { ... }
fn upload_png(self) { ... }
fn post(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
player_name: impl Into<Il2CppString>,
meta_data: impl Into<VersusServerRankedMetaData>,
data: impl Into<VersusServerRankedData>,
data_type: impl Into<u16>,
png_bytes: impl Into<Array<u8>>,
)
fn ctor( self, player_name: impl Into<Il2CppString>, meta_data: impl Into<VersusServerRankedMetaData>, data: impl Into<VersusServerRankedData>, data_type: impl Into<u16>, png_bytes: impl Into<Array<u8>>, )
.ctor(::unity::Il2CppString, crate::app::versusserverrankedmetadata::VersusServerRankedMetaData, crate::app::versusserverrankeddata::VersusServerRankedData, u16, ::unity::Array<u8>) overload
Sourcefn upload_png(self)
fn upload_png(self)
UploadPNG() 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: INexVersus_UploadSequence> INexVersus_UploadSequenceMethods for __T
Available on crate feature
app-nexversus only.