Trait IShellView2_Impl
pub trait IShellView2_Impl: 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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.