pub trait IProcDescMethods: IProcDesc {
// Provided methods
fn ctor(self, type: impl Into<ProcDesc_Type>) { ... }
fn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result { ... }
fn get_desc_type(self) -> ProcDesc_Type { ... }
fn get_label(self) -> i32 { ... }
fn get_persistent(self) -> ProcVoidMethod { ... }
}Provided Methods§
Sourcefn ctor(self, type: impl Into<ProcDesc_Type>)
fn ctor(self, type: impl Into<ProcDesc_Type>)
.ctor(crate::app::procdesc::ProcDesc_Type) overload
Sourcefn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result
fn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result
Execute(crate::app::procinst::ProcInst) overload
Sourcefn get_desc_type(self) -> ProcDesc_Type
fn get_desc_type(self) -> ProcDesc_Type
get_DescType() overload
Sourcefn get_persistent(self) -> ProcVoidMethod
fn get_persistent(self) -> ProcVoidMethod
get_Persistent() 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: IProcDesc> IProcDescMethods for __T
Available on crate feature
app-procdesc only.