pub trait IWEInvokeCommand_Impl: Sized {
    // Required method
    fn InvokeCommand(
        &self,
        ncommandid: u32,
        pidata: Option<&IUnknown>
    ) -> Result<()>;
}

Required Methods§

fn InvokeCommand( &self, ncommandid: u32, pidata: Option<&IUnknown> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§