Trait ICreateProcessInputs_Impl
pub trait ICreateProcessInputs_Impl: IUnknownImpl {
    // Required methods
    fn GetCreateFlags(&self) -> Result<u32>;
    fn SetCreateFlags(&self, dwcreationflags: u32) -> Result<()>;
    fn AddCreateFlags(&self, dwcreationflags: u32) -> Result<()>;
    fn SetHotKey(&self, whotkey: u16) -> Result<()>;
    fn AddStartupFlags(&self, dwstartupinfoflags: u32) -> Result<()>;
    fn SetTitle(&self, psztitle: &PCWSTR) -> Result<()>;
    fn SetEnvironmentVariable(
        &self,
        pszname: &PCWSTR,
        pszvalue: &PCWSTR,
    ) -> Result<()>;
}Required Methods§
fn GetCreateFlags(&self) -> Result<u32>
fn SetCreateFlags(&self, dwcreationflags: u32) -> Result<()>
fn AddCreateFlags(&self, dwcreationflags: u32) -> Result<()>
fn SetHotKey(&self, whotkey: u16) -> Result<()>
fn AddStartupFlags(&self, dwstartupinfoflags: u32) -> Result<()>
fn SetTitle(&self, psztitle: &PCWSTR) -> Result<()>
fn SetEnvironmentVariable( &self, pszname: &PCWSTR, pszvalue: &PCWSTR, ) -> Result<()>
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.