Skip to main content

IProcDescLabelMethods

Trait IProcDescLabelMethods 

Source
pub trait IProcDescLabelMethods: IProcDescLabel {
    // Provided methods
    fn ctor(self, label: impl Into<i32>) { ... }
    fn execute(self, inst: impl Into<ProcInst>) -> ProcDesc_Result { ... }
    fn get_label(self) -> i32 { ... }
}

Provided Methods§

Source

fn ctor(self, label: impl Into<i32>)

.ctor(i32) overload

Source

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

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

Source

fn get_label(self) -> i32

get_Label() 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: IProcDescLabel> IProcDescLabelMethods for __T

Available on crate feature app-procdesclabel only.