Trait IContactAggregationLinkCollection_Impl
pub trait IContactAggregationLinkCollection_Impl: IUnknownImpl {
// 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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.