Skip to main content

IProcDescMethods

Trait IProcDescMethods 

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

Source

fn ctor(self, type: impl Into<ProcDesc_Type>)

.ctor(crate::app::procdesc::ProcDesc_Type) overload

Source

fn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result

Execute(crate::app::procinst::ProcInst) overload

Source

fn get_desc_type(self) -> ProcDesc_Type

get_DescType() overload

Source

fn get_label(self) -> i32

get_Label() overload

Source

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§

Source§

impl<__T: IProcDesc> IProcDescMethods for __T

Available on crate feature app-procdesc only.