Skip to main content

INexProfile_ServerSequenceMethods

Trait INexProfile_ServerSequenceMethods 

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

Source

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

Source

fn login(self)

Login() overload

Source

fn postlogin(self)

Postlogin() overload

Source

fn branch(self)

Branch() overload

Source

fn upload_branch(self)

UploadBranch() overload

Source

fn upload_new(self)

UploadNew() overload

Source

fn change(self)

Change() overload

Source

fn change_meta(self)

ChangeMeta() overload

Source

fn serialize_data(self) -> (Array<u8>, u32)

SerializeData(*mut::unity::Array<u8>, *mutu32) overload

Source

fn download(self)

Download() overload

Source

fn deserialize_data(self, data: impl Into<Array<u8>>) -> ProfileCard

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

Source

fn succeeded(self)

Succeeded() overload

Source

fn set_error(self, error: impl Into<NetError_App>)

SetError(crate::app::neterror::NetError_App) overload

Source

fn set_error_not_found(self)

SetErrorNotFound() overload

Source

fn set_error_permission_denied(self)

SetErrorPermissionDenied() overload

Source

fn error(self)

Error() 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: INexProfile_ServerSequence> INexProfile_ServerSequenceMethods for __T

Available on crate feature app-nexprofile only.