pub trait INexProfile_ServerSequenceMethods: INexProfile_ServerSequence {
Show 16 methods
// Provided methods
fn ctor(
self,
mode: impl Into<NexProfile_ServerSequence_Mode>,
principal_id: impl Into<u64>,
profile: impl Into<ProfileCard>,
) { ... }
fn login(self) { ... }
fn postlogin(self) { ... }
fn branch(self) { ... }
fn upload_branch(self) { ... }
fn upload_new(self) { ... }
fn change(self) { ... }
fn change_meta(self) { ... }
fn serialize_data(self) -> (Array<u8>, u32) { ... }
fn download(self) { ... }
fn deserialize_data(self, data: impl Into<Array<u8>>) -> ProfileCard { ... }
fn succeeded(self) { ... }
fn set_error(self, error: impl Into<NetError_App>) { ... }
fn set_error_not_found(self) { ... }
fn set_error_permission_denied(self) { ... }
fn error(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
mode: impl Into<NexProfile_ServerSequence_Mode>,
principal_id: impl Into<u64>,
profile: impl Into<ProfileCard>,
)
fn ctor( self, mode: impl Into<NexProfile_ServerSequence_Mode>, principal_id: impl Into<u64>, profile: impl Into<ProfileCard>, )
.ctor(crate::app::nexprofile::NexProfile_ServerSequence_Mode, u64, crate::app::profilecard::ProfileCard) overload
Sourcefn upload_branch(self)
fn upload_branch(self)
UploadBranch() overload
Sourcefn upload_new(self)
fn upload_new(self)
UploadNew() overload
Sourcefn change_meta(self)
fn change_meta(self)
ChangeMeta() overload
Sourcefn serialize_data(self) -> (Array<u8>, u32)
fn serialize_data(self) -> (Array<u8>, u32)
SerializeData(*mut::unity::Array<u8>, *mutu32) overload
Sourcefn deserialize_data(self, data: impl Into<Array<u8>>) -> ProfileCard
fn deserialize_data(self, data: impl Into<Array<u8>>) -> ProfileCard
DeserializeData(::unity::Array<u8>) overload
Sourcefn set_error(self, error: impl Into<NetError_App>)
fn set_error(self, error: impl Into<NetError_App>)
SetError(crate::app::neterror::NetError_App) overload
Sourcefn set_error_not_found(self)
fn set_error_not_found(self)
SetErrorNotFound() overload
Sourcefn set_error_permission_denied(self)
fn set_error_permission_denied(self)
SetErrorPermissionDenied() 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: INexProfile_ServerSequence> INexProfile_ServerSequenceMethods for __T
Available on crate feature
app-nexprofile only.