Trait IContactAggregationServerPersonCollection_Impl
pub trait IContactAggregationServerPersonCollection_Impl: IUnknownImpl {
// Required methods
fn FindFirst(&self) -> Result<IContactAggregationServerPerson>;
fn FindFirstByServerId(
&self,
pserverid: &PCWSTR,
) -> Result<IContactAggregationServerPerson>;
fn FindFirstByAggregateId(
&self,
paggregateid: &PCWSTR,
) -> Result<IContactAggregationServerPerson>;
fn FindFirstByLinkedAggregateId(
&self,
paggregateid: &PCWSTR,
) -> Result<IContactAggregationServerPerson>;
fn FindNext(&self) -> Result<IContactAggregationServerPerson>;
fn Count(&self) -> Result<u32>;
}
Required Methods§
fn FindFirst(&self) -> Result<IContactAggregationServerPerson>
fn FindFirstByServerId( &self, pserverid: &PCWSTR, ) -> Result<IContactAggregationServerPerson>
fn FindFirstByAggregateId( &self, paggregateid: &PCWSTR, ) -> Result<IContactAggregationServerPerson>
fn FindFirstByLinkedAggregateId( &self, paggregateid: &PCWSTR, ) -> Result<IContactAggregationServerPerson>
fn FindNext(&self) -> Result<IContactAggregationServerPerson>
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.