Trait IParentAndItem_Impl
pub trait IParentAndItem_Impl: IUnknownImpl {
// Required methods
fn SetParentAndItem(
&self,
pidlparent: *const ITEMIDLIST,
psf: Ref<'_, IShellFolder>,
pidlchild: *const ITEMIDLIST,
) -> Result<()>;
fn GetParentAndItem(
&self,
ppidlparent: *mut *mut ITEMIDLIST,
ppsf: OutRef<'_, IShellFolder>,
ppidlchild: *mut *mut ITEMIDLIST,
) -> Result<()>;
}
Required Methods§
fn SetParentAndItem( &self, pidlparent: *const ITEMIDLIST, psf: Ref<'_, IShellFolder>, pidlchild: *const ITEMIDLIST, ) -> Result<()>
fn GetParentAndItem( &self, ppidlparent: *mut *mut ITEMIDLIST, ppsf: OutRef<'_, IShellFolder>, ppidlchild: *mut *mut ITEMIDLIST, ) -> 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.