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§

Object Safety§

This trait is not object safe.

Implementors§