Trait IExecuteCommand_Impl
pub trait IExecuteCommand_Impl: IUnknownImpl {
    // Required methods
    fn SetKeyState(&self, grfkeystate: u32) -> Result<()>;
    fn SetParameters(&self, pszparameters: &PCWSTR) -> Result<()>;
    fn SetPosition(&self, pt: &POINT) -> Result<()>;
    fn SetShowWindow(&self, nshow: i32) -> Result<()>;
    fn SetNoShowUI(&self, fnoshowui: BOOL) -> Result<()>;
    fn SetDirectory(&self, pszdirectory: &PCWSTR) -> Result<()>;
    fn Execute(&self) -> Result<()>;
}Required Methods§
fn SetKeyState(&self, grfkeystate: u32) -> Result<()>
fn SetParameters(&self, pszparameters: &PCWSTR) -> Result<()>
fn SetPosition(&self, pt: &POINT) -> Result<()>
fn SetShowWindow(&self, nshow: i32) -> Result<()>
fn SetNoShowUI(&self, fnoshowui: BOOL) -> Result<()>
fn SetDirectory(&self, pszdirectory: &PCWSTR) -> Result<()>
fn Execute(&self) -> 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.