Trait INamespaceWalkCB_Impl
pub trait INamespaceWalkCB_Impl: IUnknownImpl {
    // Required methods
    fn FoundItem(
        &self,
        psf: Ref<'_, IShellFolder>,
        pidl: *const ITEMIDLIST,
    ) -> Result<()>;
    fn EnterFolder(
        &self,
        psf: Ref<'_, IShellFolder>,
        pidl: *const ITEMIDLIST,
    ) -> Result<()>;
    fn LeaveFolder(
        &self,
        psf: Ref<'_, IShellFolder>,
        pidl: *const ITEMIDLIST,
    ) -> Result<()>;
    fn InitializeProgressDialog(
        &self,
        ppsztitle: *mut PWSTR,
        ppszcancel: *mut PWSTR,
    ) -> Result<()>;
}Required Methods§
fn FoundItem( &self, psf: Ref<'_, IShellFolder>, pidl: *const ITEMIDLIST, ) -> Result<()>
fn EnterFolder( &self, psf: Ref<'_, IShellFolder>, pidl: *const ITEMIDLIST, ) -> Result<()>
fn LeaveFolder( &self, psf: Ref<'_, IShellFolder>, pidl: *const ITEMIDLIST, ) -> Result<()>
fn InitializeProgressDialog( &self, ppsztitle: *mut PWSTR, ppszcancel: *mut PWSTR, ) -> 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.