pub struct IShellFolderView(/* private fields */);
Implementations§
Source§impl IShellFolderView
impl IShellFolderView
pub unsafe fn Rearrange<'a>( &self, lparamsort: impl IntoParam<'a, LPARAM>, ) -> Result<()>
pub unsafe fn GetArrangeParam(&self) -> Result<LPARAM>
pub unsafe fn ArrangeGrid(&self) -> Result<()>
pub unsafe fn AutoArrange(&self) -> Result<()>
pub unsafe fn GetAutoArrange(&self) -> Result<()>
pub unsafe fn AddObject(&self, pidl: *mut ITEMIDLIST) -> Result<u32>
pub unsafe fn GetObject( &self, ppidl: *mut *mut ITEMIDLIST, uitem: u32, ) -> Result<()>
pub unsafe fn RemoveObject(&self, pidl: *mut ITEMIDLIST) -> Result<u32>
pub unsafe fn GetObjectCount(&self) -> Result<u32>
pub unsafe fn SetObjectCount(&self, ucount: u32, dwflags: u32) -> Result<()>
pub unsafe fn UpdateObject( &self, pidlold: *mut ITEMIDLIST, pidlnew: *mut ITEMIDLIST, ) -> Result<u32>
pub unsafe fn RefreshObject(&self, pidl: *mut ITEMIDLIST) -> Result<u32>
pub unsafe fn SetRedraw<'a>( &self, bredraw: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn GetSelectedCount(&self) -> Result<u32>
pub unsafe fn GetSelectedObjects( &self, pppidl: *mut *mut *mut ITEMIDLIST, puitems: *mut u32, ) -> Result<()>
pub unsafe fn IsDropOnSource<'a>( &self, pdroptarget: impl IntoParam<'a, IDropTarget>, ) -> Result<()>
pub unsafe fn GetDragPoint(&self) -> Result<POINT>
pub unsafe fn GetDropPoint(&self) -> Result<POINT>
pub unsafe fn MoveIcons<'a>( &self, pdataobject: impl IntoParam<'a, IDataObject>, ) -> Result<()>
pub unsafe fn SetItemPos( &self, pidl: *mut ITEMIDLIST, ppt: *mut POINT, ) -> Result<()>
pub unsafe fn IsBkDropTarget<'a>( &self, pdroptarget: impl IntoParam<'a, IDropTarget>, ) -> Result<()>
pub unsafe fn SetClipboard<'a>( &self, bmove: impl IntoParam<'a, BOOL>, ) -> Result<()>
pub unsafe fn SetPoints<'a>( &self, pdataobject: impl IntoParam<'a, IDataObject>, ) -> Result<()>
pub unsafe fn GetItemSpacing(&self) -> Result<ITEMSPACING>
pub unsafe fn SetCallback<'a>( &self, pnewcb: impl IntoParam<'a, IShellFolderViewCB>, ) -> Result<IShellFolderViewCB>
pub unsafe fn Select(&self, dwflags: SFVS_SELECT) -> Result<()>
pub unsafe fn QuerySupport(&self, pdwsupport: *mut u32) -> Result<()>
pub unsafe fn SetAutomationObject<'a>( &self, pdisp: impl IntoParam<'a, IDispatch>, ) -> Result<()>
Trait Implementations§
Source§impl Clone for IShellFolderView
impl Clone for IShellFolderView
Source§fn clone(&self) -> IShellFolderView
fn clone(&self) -> IShellFolderView
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 IShellFolderView
impl Debug for IShellFolderView
Source§impl From<&IShellFolderView> for IUnknown
impl From<&IShellFolderView> for IUnknown
Source§fn from(value: &IShellFolderView) -> Self
fn from(value: &IShellFolderView) -> Self
Converts to this type from the input type.
Source§impl From<IShellFolderView> for IUnknown
impl From<IShellFolderView> for IUnknown
Source§fn from(value: IShellFolderView) -> Self
fn from(value: IShellFolderView) -> Self
Converts to this type from the input type.
Source§impl Interface for IShellFolderView
impl Interface for IShellFolderView
const IID: Guid
type Vtable = IShellFolderView_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 IShellFolderView
impl PartialEq for IShellFolderView
impl Eq for IShellFolderView
impl StructuralPartialEq for IShellFolderView
Auto Trait Implementations§
impl Freeze for IShellFolderView
impl RefUnwindSafe for IShellFolderView
impl !Send for IShellFolderView
impl !Sync for IShellFolderView
impl Unpin for IShellFolderView
impl UnwindSafe for IShellFolderView
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