pub struct IExplorerBrowser(/* private fields */);Implementations§
Source§impl IExplorerBrowser
impl IExplorerBrowser
pub unsafe fn Initialize<'a>( &self, hwndparent: impl IntoParam<'a, HWND>, prc: *const RECT, pfs: *const FOLDERSETTINGS, ) -> Result<()>
pub unsafe fn Destroy(&self) -> Result<()>
pub unsafe fn SetRect<'a>( &self, phdwp: *mut isize, rcbrowser: impl IntoParam<'a, RECT>, ) -> Result<()>
pub unsafe fn SetPropertyBag<'a>( &self, pszpropertybag: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn SetEmptyText<'a>( &self, pszemptytext: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn SetFolderSettings(&self, pfs: *const FOLDERSETTINGS) -> Result<()>
pub unsafe fn Advise<'a>( &self, psbe: impl IntoParam<'a, IExplorerBrowserEvents>, ) -> Result<u32>
pub unsafe fn Unadvise(&self, dwcookie: u32) -> Result<()>
pub unsafe fn SetOptions(&self, dwflag: EXPLORER_BROWSER_OPTIONS) -> Result<()>
pub unsafe fn GetOptions(&self) -> Result<EXPLORER_BROWSER_OPTIONS>
pub unsafe fn BrowseToIDList( &self, pidl: *mut ITEMIDLIST, uflags: u32, ) -> Result<()>
pub unsafe fn BrowseToObject<'a>( &self, punk: impl IntoParam<'a, IUnknown>, uflags: u32, ) -> Result<()>
pub unsafe fn FillFromObject<'a>( &self, punk: impl IntoParam<'a, IUnknown>, dwflags: EXPLORER_BROWSER_FILL_FLAGS, ) -> Result<()>
pub unsafe fn RemoveAll(&self) -> Result<()>
pub unsafe fn GetCurrentView<T: Interface>(&self) -> Result<T>
Trait Implementations§
Source§impl Clone for IExplorerBrowser
impl Clone for IExplorerBrowser
Source§fn clone(&self) -> IExplorerBrowser
fn clone(&self) -> IExplorerBrowser
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 IExplorerBrowser
impl Debug for IExplorerBrowser
Source§impl From<&IExplorerBrowser> for IUnknown
impl From<&IExplorerBrowser> for IUnknown
Source§fn from(value: &IExplorerBrowser) -> Self
fn from(value: &IExplorerBrowser) -> Self
Converts to this type from the input type.
Source§impl From<IExplorerBrowser> for IUnknown
impl From<IExplorerBrowser> for IUnknown
Source§fn from(value: IExplorerBrowser) -> Self
fn from(value: IExplorerBrowser) -> Self
Converts to this type from the input type.
Source§impl Interface for IExplorerBrowser
impl Interface for IExplorerBrowser
const IID: Guid
type Vtable = IExplorerBrowser_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 IExplorerBrowser
impl PartialEq for IExplorerBrowser
impl Eq for IExplorerBrowser
impl StructuralPartialEq for IExplorerBrowser
Auto Trait Implementations§
impl Freeze for IExplorerBrowser
impl RefUnwindSafe for IExplorerBrowser
impl !Send for IExplorerBrowser
impl !Sync for IExplorerBrowser
impl Unpin for IExplorerBrowser
impl UnwindSafe for IExplorerBrowser
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