Trait windows::Win32::System::Com::IConnectionPoint_Impl
pub trait IConnectionPoint_Impl: Sized {
// Required methods
fn GetConnectionInterface(&self) -> Result<GUID>;
fn GetConnectionPointContainer(&self) -> Result<IConnectionPointContainer>;
fn Advise(&self, punksink: Option<&IUnknown>) -> Result<u32>;
fn Unadvise(&self, dwcookie: u32) -> Result<()>;
fn EnumConnections(&self) -> Result<IEnumConnections>;
}
Required Methods§
fn GetConnectionInterface(&self) -> Result<GUID>
fn GetConnectionPointContainer(&self) -> Result<IConnectionPointContainer>
fn Advise(&self, punksink: Option<&IUnknown>) -> Result<u32>
fn Unadvise(&self, dwcookie: u32) -> Result<()>
fn EnumConnections(&self) -> Result<IEnumConnections>
Object Safety§
This trait is not object safe.