pub trait IExecuteCommand_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§