pub trait IExplorerBrowserEvents_Impl: Sized {
    // Required methods
    fn OnNavigationPending(&self, pidlfolder: *const ITEMIDLIST) -> Result<()>;
    fn OnViewCreated(&self, psv: Option<&IShellView>) -> Result<()>;
    fn OnNavigationComplete(&self, pidlfolder: *const ITEMIDLIST) -> Result<()>;
    fn OnNavigationFailed(&self, pidlfolder: *const ITEMIDLIST) -> Result<()>;
}

Required Methods§

fn OnNavigationPending(&self, pidlfolder: *const ITEMIDLIST) -> Result<()>

fn OnViewCreated(&self, psv: Option<&IShellView>) -> Result<()>

fn OnNavigationComplete(&self, pidlfolder: *const ITEMIDLIST) -> Result<()>

fn OnNavigationFailed(&self, pidlfolder: *const ITEMIDLIST) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§