Trait IFolderFilter_Impl
pub trait IFolderFilter_Impl: IUnknownImpl {
    // Required methods
    fn ShouldShow(
        &self,
        psf: Ref<'_, IShellFolder>,
        pidlfolder: *const ITEMIDLIST,
        pidlitem: *const ITEMIDLIST,
    ) -> Result<()>;
    fn GetEnumFlags(
        &self,
        psf: Ref<'_, IShellFolder>,
        pidlfolder: *const ITEMIDLIST,
        phwnd: *mut HWND,
        pgrfflags: *mut u32,
    ) -> Result<()>;
}Required Methods§
fn ShouldShow( &self, psf: Ref<'_, IShellFolder>, pidlfolder: *const ITEMIDLIST, pidlitem: *const ITEMIDLIST, ) -> Result<()>
fn GetEnumFlags( &self, psf: Ref<'_, IShellFolder>, pidlfolder: *const ITEMIDLIST, phwnd: *mut HWND, pgrfflags: *mut u32, ) -> 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.