pub trait IConnectionPointContainer_Impl: Sized {
    // Required methods
    fn EnumConnectionPoints(&self) -> Result<IEnumConnectionPoints>;
    fn FindConnectionPoint(&self, riid: *const GUID) -> Result<IConnectionPoint>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§