Trait IResultsFolder_Impl
pub trait IResultsFolder_Impl: IUnknownImpl {
// Required methods
fn AddItem(&self, psi: Ref<'_, IShellItem>) -> Result<()>;
fn AddIDList(
&self,
pidl: *const ITEMIDLIST,
ppidladded: *mut *mut ITEMIDLIST,
) -> Result<()>;
fn RemoveItem(&self, psi: Ref<'_, IShellItem>) -> Result<()>;
fn RemoveIDList(&self, pidl: *const ITEMIDLIST) -> Result<()>;
fn RemoveAll(&self) -> Result<()>;
}
Required Methods§
fn AddItem(&self, psi: Ref<'_, IShellItem>) -> Result<()>
fn AddIDList( &self, pidl: *const ITEMIDLIST, ppidladded: *mut *mut ITEMIDLIST, ) -> Result<()>
fn RemoveItem(&self, psi: Ref<'_, IShellItem>) -> Result<()>
fn RemoveIDList(&self, pidl: *const ITEMIDLIST) -> Result<()>
fn RemoveAll(&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.