Skip to main content

IFunctionCallProcMethods

Trait IFunctionCallProcMethods 

Source
pub trait IFunctionCallProcMethods: IFunctionCallProc {
    // Provided methods
    fn create_desc(self) -> Array<ProcDesc> { ... }
    fn ctor(self, callback: impl Into<ProcVoidMethod>) { ... }
}

Provided Methods§

Source

fn create_desc(self) -> Array<ProcDesc>

CreateDesc() overload

Source

fn ctor(self, callback: impl Into<ProcVoidMethod>)

.ctor(crate::app::procvoidmethod::ProcVoidMethod) 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: IFunctionCallProc> IFunctionCallProcMethods for __T

Available on crate feature app-functioncallproc only.