pub trait INamespaceWalkCB_Impl: Sized {
    // Required methods
    fn FoundItem(
        &self,
        psf: Option<&IShellFolder>,
        pidl: *const ITEMIDLIST
    ) -> Result<()>;
    fn EnterFolder(
        &self,
        psf: Option<&IShellFolder>,
        pidl: *const ITEMIDLIST
    ) -> Result<()>;
    fn LeaveFolder(
        &self,
        psf: Option<&IShellFolder>,
        pidl: *const ITEMIDLIST
    ) -> Result<()>;
    fn InitializeProgressDialog(
        &self,
        ppsztitle: *mut PWSTR,
        ppszcancel: *mut PWSTR
    ) -> Result<()>;
}

Required Methods§

fn FoundItem( &self, psf: Option<&IShellFolder>, pidl: *const ITEMIDLIST ) -> Result<()>

fn EnterFolder( &self, psf: Option<&IShellFolder>, pidl: *const ITEMIDLIST ) -> Result<()>

fn LeaveFolder( &self, psf: Option<&IShellFolder>, pidl: *const ITEMIDLIST ) -> Result<()>

fn InitializeProgressDialog( &self, ppsztitle: *mut PWSTR, ppszcancel: *mut PWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§