pub trait IContactAggregationLinkCollection_Impl: Sized {
// Required methods
fn FindFirst(&self) -> Result<IContactAggregationLink>;
fn FindFirstByRemoteId(
&self,
psourcetype: &PCWSTR,
paccountid: &PCWSTR,
premoteid: *const CONTACT_AGGREGATION_BLOB,
) -> Result<IContactAggregationLink>;
fn FindNext(&self) -> Result<IContactAggregationLink>;
fn Count(&self) -> Result<u32>;
}
Required Methods§
fn FindFirst(&self) -> Result<IContactAggregationLink>
fn FindFirstByRemoteId( &self, psourcetype: &PCWSTR, paccountid: &PCWSTR, premoteid: *const CONTACT_AGGREGATION_BLOB, ) -> Result<IContactAggregationLink>
fn FindNext(&self) -> Result<IContactAggregationLink>
fn Count(&self) -> Result<u32>
Object Safety§
This trait is not object safe.