Trait FolderItemVerb_Impl
pub trait FolderItemVerb_Impl: 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.