pub trait INexProfileMethods: INexProfile {
// Provided methods
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn upload(
self,
super_: impl Into<ProcInst>,
profile: impl Into<ProfileCard>,
) -> bool { ... }
fn download(
self,
super_: impl Into<ProcInst>,
principal_id: impl Into<u64>,
) -> bool { ... }
fn get_result(self) -> NexProfile_Results { ... }
fn get_result_data(self) -> ProfileCard { ... }
fn clear_result(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn upload(
self,
super_: impl Into<ProcInst>,
profile: impl Into<ProfileCard>,
) -> bool
fn upload( self, super_: impl Into<ProcInst>, profile: impl Into<ProfileCard>, ) -> bool
Upload(crate::app::procinst::ProcInst, crate::app::profilecard::ProfileCard) overload
Sourcefn download(
self,
super_: impl Into<ProcInst>,
principal_id: impl Into<u64>,
) -> bool
fn download( self, super_: impl Into<ProcInst>, principal_id: impl Into<u64>, ) -> bool
Download(crate::app::procinst::ProcInst, u64) overload
Sourcefn get_result(self) -> NexProfile_Results
fn get_result(self) -> NexProfile_Results
get_Result() overload
Sourcefn get_result_data(self) -> ProfileCard
fn get_result_data(self) -> ProfileCard
get_ResultData() overload
Sourcefn clear_result(self)
fn clear_result(self)
ClearResult() 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> INexProfileMethods for __T
Available on crate feature
app-nexprofile only.