pub trait IExplorerCommand_Impl: Sized {
    // Required methods
    fn GetTitle(&self, psiitemarray: Option<&IShellItemArray>) -> Result<PWSTR>;
    fn GetIcon(&self, psiitemarray: Option<&IShellItemArray>) -> Result<PWSTR>;
    fn GetToolTip(
        &self,
        psiitemarray: Option<&IShellItemArray>
    ) -> Result<PWSTR>;
    fn GetCanonicalName(&self) -> Result<GUID>;
    fn GetState(
        &self,
        psiitemarray: Option<&IShellItemArray>,
        foktobeslow: BOOL
    ) -> Result<u32>;
    fn Invoke(
        &self,
        psiitemarray: Option<&IShellItemArray>,
        pbc: Option<&IBindCtx>
    ) -> Result<()>;
    fn GetFlags(&self) -> Result<u32>;
    fn EnumSubCommands(&self) -> Result<IEnumExplorerCommand>;
}

Required Methods§

fn GetTitle(&self, psiitemarray: Option<&IShellItemArray>) -> Result<PWSTR>

fn GetIcon(&self, psiitemarray: Option<&IShellItemArray>) -> Result<PWSTR>

fn GetToolTip(&self, psiitemarray: Option<&IShellItemArray>) -> Result<PWSTR>

fn GetCanonicalName(&self) -> Result<GUID>

fn GetState( &self, psiitemarray: Option<&IShellItemArray>, foktobeslow: BOOL ) -> Result<u32>

fn Invoke( &self, psiitemarray: Option<&IShellItemArray>, pbc: Option<&IBindCtx> ) -> Result<()>

fn GetFlags(&self) -> Result<u32>

fn EnumSubCommands(&self) -> Result<IEnumExplorerCommand>

Object Safety§

This trait is not object safe.

Implementors§