pub struct CIE4ConnectionPoint(/* private fields */);
Implementations§
Source§impl CIE4ConnectionPoint
impl CIE4ConnectionPoint
pub unsafe fn GetConnectionInterface(&self) -> Result<Guid>
pub unsafe fn GetConnectionPointContainer( &self, ) -> Result<IConnectionPointContainer>
pub unsafe fn Advise<'a>( &self, punksink: impl IntoParam<'a, IUnknown>, ) -> Result<u32>
pub unsafe fn Unadvise(&self, dwcookie: u32) -> Result<()>
pub unsafe fn EnumConnections(&self) -> Result<IEnumConnections>
pub unsafe fn DoInvokeIE4( &self, pf: *mut BOOL, ppv: *mut *mut c_void, dispid: i32, pdispparams: *mut DISPPARAMS, ) -> Result<()>
pub unsafe fn DoInvokePIDLIE4<'a>( &self, dispid: i32, pidl: *mut ITEMIDLIST, fcancancel: impl IntoParam<'a, BOOL>, ) -> Result<()>
Trait Implementations§
Source§impl Clone for CIE4ConnectionPoint
impl Clone for CIE4ConnectionPoint
Source§fn clone(&self) -> CIE4ConnectionPoint
fn clone(&self) -> CIE4ConnectionPoint
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 CIE4ConnectionPoint
impl Debug for CIE4ConnectionPoint
Source§impl From<&CIE4ConnectionPoint> for IConnectionPoint
impl From<&CIE4ConnectionPoint> for IConnectionPoint
Source§fn from(value: &CIE4ConnectionPoint) -> Self
fn from(value: &CIE4ConnectionPoint) -> Self
Converts to this type from the input type.
Source§impl From<&CIE4ConnectionPoint> for IUnknown
impl From<&CIE4ConnectionPoint> for IUnknown
Source§fn from(value: &CIE4ConnectionPoint) -> Self
fn from(value: &CIE4ConnectionPoint) -> Self
Converts to this type from the input type.
Source§impl From<CIE4ConnectionPoint> for IConnectionPoint
impl From<CIE4ConnectionPoint> for IConnectionPoint
Source§fn from(value: CIE4ConnectionPoint) -> Self
fn from(value: CIE4ConnectionPoint) -> Self
Converts to this type from the input type.
Source§impl From<CIE4ConnectionPoint> for IUnknown
impl From<CIE4ConnectionPoint> for IUnknown
Source§fn from(value: CIE4ConnectionPoint) -> Self
fn from(value: CIE4ConnectionPoint) -> Self
Converts to this type from the input type.
Source§impl Interface for CIE4ConnectionPoint
impl Interface for CIE4ConnectionPoint
const IID: Guid
type Vtable = CIE4ConnectionPoint_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 CIE4ConnectionPoint
impl PartialEq for CIE4ConnectionPoint
impl Eq for CIE4ConnectionPoint
impl StructuralPartialEq for CIE4ConnectionPoint
Auto Trait Implementations§
impl Freeze for CIE4ConnectionPoint
impl RefUnwindSafe for CIE4ConnectionPoint
impl !Send for CIE4ConnectionPoint
impl !Sync for CIE4ConnectionPoint
impl Unpin for CIE4ConnectionPoint
impl UnwindSafe for CIE4ConnectionPoint
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