pub trait IWaitToDeleteProcMethods: IWaitToDeleteProc {
// Provided methods
fn ctor(self, waited_proc_inst: impl Into<ProcInst>) { ... }
fn create_desc(self) -> Array<ProcDesc> { ... }
}Provided Methods§
Sourcefn ctor(self, waited_proc_inst: impl Into<ProcInst>)
fn ctor(self, waited_proc_inst: impl Into<ProcInst>)
.ctor(crate::app::procinst::ProcInst) overload
Sourcefn create_desc(self) -> Array<ProcDesc>
fn create_desc(self) -> Array<ProcDesc>
CreateDesc() 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: IWaitToDeleteProc> IWaitToDeleteProcMethods for __T
Available on crate feature
app-waittodeleteproc only.