pub struct IHlinkBrowseContext(/* private fields */);Implementations§
Source§impl IHlinkBrowseContext
impl IHlinkBrowseContext
pub unsafe fn Register<'a>( &self, reserved: u32, piunk: impl IntoParam<'a, IUnknown>, pimk: impl IntoParam<'a, IMoniker>, ) -> Result<u32>
pub unsafe fn GetObject<'a>( &self, pimk: impl IntoParam<'a, IMoniker>, fbindifrootregistered: impl IntoParam<'a, BOOL>, ) -> Result<IUnknown>
pub unsafe fn Revoke(&self, dwregister: u32) -> Result<()>
pub unsafe fn SetBrowseWindowInfo(&self, phlbwi: *mut HLBWINFO) -> Result<()>
pub unsafe fn GetBrowseWindowInfo(&self) -> Result<HLBWINFO>
pub unsafe fn SetInitialHlink<'a>( &self, pimktarget: impl IntoParam<'a, IMoniker>, pwzlocation: impl IntoParam<'a, PWSTR>, pwzfriendlyname: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn UpdateHlink<'a>( &self, uhlid: u32, pimktarget: impl IntoParam<'a, IMoniker>, pwzlocation: impl IntoParam<'a, PWSTR>, pwzfriendlyname: impl IntoParam<'a, PWSTR>, ) -> Result<()>
pub unsafe fn QueryHlink(&self, grfhlqf: u32, uhlid: u32) -> Result<()>
pub unsafe fn GetHlink(&self, uhlid: u32) -> Result<IHlink>
pub unsafe fn SetCurrentHlink(&self, uhlid: u32) -> Result<()>
pub unsafe fn Clone<'a>( &self, piunkouter: impl IntoParam<'a, IUnknown>, riid: *const Guid, ) -> Result<IUnknown>
pub unsafe fn Close(&self, reserved: u32) -> Result<()>
Trait Implementations§
Source§impl Clone for IHlinkBrowseContext
impl Clone for IHlinkBrowseContext
Source§fn clone(&self) -> IHlinkBrowseContext
fn clone(&self) -> IHlinkBrowseContext
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 IHlinkBrowseContext
impl Debug for IHlinkBrowseContext
Source§impl From<&IHlinkBrowseContext> for IUnknown
impl From<&IHlinkBrowseContext> for IUnknown
Source§fn from(value: &IHlinkBrowseContext) -> Self
fn from(value: &IHlinkBrowseContext) -> Self
Converts to this type from the input type.
Source§impl From<IHlinkBrowseContext> for IUnknown
impl From<IHlinkBrowseContext> for IUnknown
Source§fn from(value: IHlinkBrowseContext) -> Self
fn from(value: IHlinkBrowseContext) -> Self
Converts to this type from the input type.
Source§impl Interface for IHlinkBrowseContext
impl Interface for IHlinkBrowseContext
const IID: Guid
type Vtable = IHlinkBrowseContext_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 IHlinkBrowseContext
impl PartialEq for IHlinkBrowseContext
impl Eq for IHlinkBrowseContext
impl StructuralPartialEq for IHlinkBrowseContext
Auto Trait Implementations§
impl Freeze for IHlinkBrowseContext
impl RefUnwindSafe for IHlinkBrowseContext
impl !Send for IHlinkBrowseContext
impl !Sync for IHlinkBrowseContext
impl Unpin for IHlinkBrowseContext
impl UnwindSafe for IHlinkBrowseContext
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