pub trait IContactAggregationAggregateCollection_Impl: Sized {
    // Required methods
    fn FindFirst(&self) -> Result<IContactAggregationAggregate>;
    fn FindFirstByAntiLinkId(
        &self,
        pantilinkid: &PCWSTR,
    ) -> Result<IContactAggregationAggregate>;
    fn FindNext(&self) -> Result<IContactAggregationAggregate>;
    fn Count(&self) -> Result<i32>;
}

Required Methods§

fn FindFirst(&self) -> Result<IContactAggregationAggregate>

fn FindFirstByAntiLinkId( &self, pantilinkid: &PCWSTR, ) -> Result<IContactAggregationAggregate>

fn FindNext(&self) -> Result<IContactAggregationAggregate>

fn Count(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§