pub trait FolderItemVerb_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Application(&self) -> Result<IDispatch>;
    fn Parent(&self) -> Result<IDispatch>;
    fn Name(&self) -> Result<BSTR>;
    fn DoIt(&self) -> Result<()>;
}

Required Methods§

fn Application(&self) -> Result<IDispatch>

fn Parent(&self) -> Result<IDispatch>

fn Name(&self) -> Result<BSTR>

fn DoIt(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§