pub trait FolderItemVerbs_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn Application(&self) -> Result<IDispatch>;
    fn Parent(&self) -> Result<IDispatch>;
    fn Item(&self, index: &VARIANT) -> Result<FolderItemVerb>;
    fn _NewEnum(&self) -> Result<IUnknown>;
}

Required Methods§

fn Count(&self) -> Result<i32>

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

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

fn Item(&self, index: &VARIANT) -> Result<FolderItemVerb>

fn _NewEnum(&self) -> Result<IUnknown>

Object Safety§

This trait is not object safe.

Implementors§