pub trait ICommDlgBrowser3_Impl: Sized + ICommDlgBrowser2_Impl {
    // Required methods
    fn OnColumnClicked(
        &self,
        ppshv: Option<&IShellView>,
        icolumn: i32
    ) -> Result<()>;
    fn GetCurrentFilter(
        &self,
        pszfilespec: PWSTR,
        cchfilespec: i32
    ) -> Result<()>;
    fn OnPreViewCreated(&self, ppshv: Option<&IShellView>) -> Result<()>;
}

Required Methods§

fn OnColumnClicked( &self, ppshv: Option<&IShellView>, icolumn: i32 ) -> Result<()>

fn GetCurrentFilter(&self, pszfilespec: PWSTR, cchfilespec: i32) -> Result<()>

fn OnPreViewCreated(&self, ppshv: Option<&IShellView>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§