Skip to main content

INamespaceWalkCB_Impl

Trait INamespaceWalkCB_Impl 

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

Required Methods§

Source

fn FoundItem( &self, psf: Ref<'_, IShellFolder>, pidl: *const ITEMIDLIST, ) -> Result<(), Error>

Source

fn EnterFolder( &self, psf: Ref<'_, IShellFolder>, pidl: *const ITEMIDLIST, ) -> Result<(), Error>

Source

fn LeaveFolder( &self, psf: Ref<'_, IShellFolder>, pidl: *const ITEMIDLIST, ) -> Result<(), Error>

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§