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§
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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".