pub struct IShellView(/* private fields */);
Implementations§
Source§impl IShellView
impl IShellView
pub unsafe fn GetWindow(&self) -> Result<HWND>
pub unsafe fn ContextSensitiveHelp<'a>( &self, fentermode: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn TranslateAccelerator(&self, pmsg: *mut MSG) -> Result<()>
pub unsafe fn EnableModeless<'a>( &self, fenable: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn UIActivate(&self, ustate: u32) -> Result<()>
pub unsafe fn Refresh(&self) -> Result<()>
pub unsafe fn CreateViewWindow<'a>( &self, psvprevious: impl IntoParam<'a, IShellView>, pfs: *mut FOLDERSETTINGS, psb: impl IntoParam<'a, IShellBrowser>, prcview: *mut RECT, ) -> Result<HWND>
pub unsafe fn DestroyViewWindow(&self) -> Result<()>
pub unsafe fn GetCurrentInfo(&self) -> Result<FOLDERSETTINGS>
pub unsafe fn AddPropertySheetPages<'a>( &self, dwreserved: u32, pfn: Option<LPFNSVADDPROPSHEETPAGE>, lparam: impl IntoParam<'a, LPARAM>, ) -> Result<()>
pub unsafe fn SaveViewState(&self) -> Result<()>
pub unsafe fn SelectItem( &self, pidlitem: *mut ITEMIDLIST, uflags: u32, ) -> Result<()>
pub unsafe fn GetItemObject<T: Interface>(&self, uitem: u32) -> Result<T>
Trait Implementations§
Source§impl Clone for IShellView
impl Clone for IShellView
Source§fn clone(&self) -> IShellView
fn clone(&self) -> IShellView
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IShellView
impl Debug for IShellView
Source§impl From<&IShellView> for IOleWindow
impl From<&IShellView> for IOleWindow
Source§fn from(value: &IShellView) -> Self
fn from(value: &IShellView) -> Self
Converts to this type from the input type.
Source§impl From<&IShellView> for IUnknown
impl From<&IShellView> for IUnknown
Source§fn from(value: &IShellView) -> Self
fn from(value: &IShellView) -> Self
Converts to this type from the input type.
Source§impl From<&IShellView2> for IShellView
impl From<&IShellView2> for IShellView
Source§fn from(value: &IShellView2) -> Self
fn from(value: &IShellView2) -> Self
Converts to this type from the input type.
Source§impl From<&IShellView3> for IShellView
impl From<&IShellView3> for IShellView
Source§fn from(value: &IShellView3) -> Self
fn from(value: &IShellView3) -> Self
Converts to this type from the input type.
Source§impl From<IShellView> for IOleWindow
impl From<IShellView> for IOleWindow
Source§fn from(value: IShellView) -> Self
fn from(value: IShellView) -> Self
Converts to this type from the input type.
Source§impl From<IShellView> for IUnknown
impl From<IShellView> for IUnknown
Source§fn from(value: IShellView) -> Self
fn from(value: IShellView) -> Self
Converts to this type from the input type.
Source§impl From<IShellView2> for IShellView
impl From<IShellView2> for IShellView
Source§fn from(value: IShellView2) -> Self
fn from(value: IShellView2) -> Self
Converts to this type from the input type.
Source§impl From<IShellView3> for IShellView
impl From<IShellView3> for IShellView
Source§fn from(value: IShellView3) -> Self
fn from(value: IShellView3) -> Self
Converts to this type from the input type.
Source§impl Interface for IShellView
impl Interface for IShellView
const IID: Guid
type Vtable = IShellView_abi
Source§unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
Safety Read more
Source§unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
Safety Read more
Source§impl PartialEq for IShellView
impl PartialEq for IShellView
impl Eq for IShellView
impl StructuralPartialEq for IShellView
Auto Trait Implementations§
impl Freeze for IShellView
impl RefUnwindSafe for IShellView
impl !Send for IShellView
impl !Sync for IShellView
impl Unpin for IShellView
impl UnwindSafe for IShellView
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
type DefaultType = Option<T>
Source§fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more