pub trait IShellView2_Impl: Sized + IShellView_Impl {
    // Required methods
    fn GetView(&self, pvid: *mut GUID, uview: u32) -> Result<()>;
    fn CreateViewWindow2(&self, lpparams: *const SV2CVW2_PARAMS) -> Result<()>;
    fn HandleRename(&self, pidlnew: *const ITEMIDLIST) -> Result<()>;
    fn SelectAndPositionItem(
        &self,
        pidlitem: *const ITEMIDLIST,
        uflags: u32,
        ppt: *const POINT
    ) -> Result<()>;
}

Required Methods§

fn GetView(&self, pvid: *mut GUID, uview: u32) -> Result<()>

fn CreateViewWindow2(&self, lpparams: *const SV2CVW2_PARAMS) -> Result<()>

fn HandleRename(&self, pidlnew: *const ITEMIDLIST) -> Result<()>

fn SelectAndPositionItem( &self, pidlitem: *const ITEMIDLIST, uflags: u32, ppt: *const POINT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§