pub trait IProcessInitializer_Impl: Sized {
    // Required methods
    fn Startup(&self, punkprocesscontrol: Option<&IUnknown>) -> Result<()>;
    fn Shutdown(&self) -> Result<()>;
}

Required Methods§

fn Startup(&self, punkprocesscontrol: Option<&IUnknown>) -> Result<()>

fn Shutdown(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§