pub struct IBindCtx(/* private fields */);Implementations§
Source§impl IBindCtx
impl IBindCtx
pub unsafe fn RegisterObjectBound<'a, T0__: IntoParam<'a, IUnknown>>( &self, punk: T0__, ) -> ErrorCode
pub unsafe fn RevokeObjectBound<'a, T0__: IntoParam<'a, IUnknown>>( &self, punk: T0__, ) -> ErrorCode
pub unsafe fn ReleaseBoundObjects(&self) -> ErrorCode
pub unsafe fn SetBindOptions(&self, pbindopts: *mut BIND_OPTS) -> ErrorCode
pub unsafe fn GetBindOptions(&self, pbindopts: *mut BIND_OPTS) -> ErrorCode
pub unsafe fn GetRunningObjectTable( &self, pprot: *mut Option<IRunningObjectTable>, ) -> ErrorCode
pub unsafe fn RegisterObjectParam<'a, T0__: IntoParam<'a, PWSTR>, T1__: IntoParam<'a, IUnknown>>( &self, pszkey: T0__, punk: T1__, ) -> ErrorCode
pub unsafe fn GetObjectParam<'a, T0__: IntoParam<'a, PWSTR>>( &self, pszkey: T0__, ppunk: *mut Option<IUnknown>, ) -> ErrorCode
pub unsafe fn EnumObjectParam( &self, ppenum: *mut Option<IEnumString>, ) -> ErrorCode
pub unsafe fn RevokeObjectParam<'a, T0__: IntoParam<'a, PWSTR>>( &self, pszkey: T0__, ) -> ErrorCode
Trait Implementations§
Source§impl Interface for IBindCtx
impl Interface for IBindCtx
const IID: Guid
type Vtable = IBindCtx_abi
Source§impl<'a> IntoParam<'a, IUnknown> for &'a IBindCtx
impl<'a> IntoParam<'a, IUnknown> for &'a IBindCtx
fn into_param(self) -> Param<'a, IUnknown>
Source§impl<'a> IntoParam<'a, IUnknown> for IBindCtx
impl<'a> IntoParam<'a, IUnknown> for IBindCtx
fn into_param(self) -> Param<'a, IUnknown>
impl Eq for IBindCtx
impl StructuralPartialEq for IBindCtx
Auto Trait Implementations§
impl Freeze for IBindCtx
impl RefUnwindSafe for IBindCtx
impl !Send for IBindCtx
impl !Sync for IBindCtx
impl Unpin for IBindCtx
impl UnwindSafe for IBindCtx
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
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.
Source§unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
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