Trait IFolderActionCollection_Impl
pub trait IFolderActionCollection_Impl: IDispatch_Impl {
// Required methods
fn Count(&self) -> Result<u32>;
fn get_Item(&self, index: &VARIANT) -> Result<IFolderAction>;
fn _NewEnum(&self) -> Result<IUnknown>;
fn Add(&self, action: Ref<'_, IFolderAction>) -> Result<()>;
fn Remove(&self, index: &VARIANT) -> Result<()>;
fn Clear(&self) -> Result<()>;
fn AddRange(&self, actions: Ref<'_, IFolderActionCollection>) -> Result<()>;
fn CreateFolderAction(&self) -> Result<IFolderAction>;
}
Required Methods§
fn Count(&self) -> Result<u32>
fn get_Item(&self, index: &VARIANT) -> Result<IFolderAction>
fn _NewEnum(&self) -> Result<IUnknown>
fn Add(&self, action: Ref<'_, IFolderAction>) -> Result<()>
fn Remove(&self, index: &VARIANT) -> Result<()>
fn Clear(&self) -> Result<()>
fn AddRange(&self, actions: Ref<'_, IFolderActionCollection>) -> Result<()>
fn CreateFolderAction(&self) -> Result<IFolderAction>
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.