windows::Win32::System::Contacts

Trait IContactAggregationGroup_Impl

pub trait IContactAggregationGroup_Impl: IUnknownImpl {
    // Required methods
    fn Delete(&self) -> Result<()>;
    fn Save(&self) -> Result<()>;
    fn Add(&self, paggregateid: &PCWSTR) -> Result<()>;
    fn Remove(&self, paggregateid: &PCWSTR) -> Result<()>;
    fn Members(&self) -> Result<IContactAggregationAggregateCollection>;
    fn GlobalObjectId(&self) -> Result<GUID>;
    fn SetGlobalObjectId(&self, pglobalobjectid: *const GUID) -> Result<()>;
    fn Id(&self) -> Result<PWSTR>;
    fn Name(&self) -> Result<PWSTR>;
    fn SetName(&self, pname: &PCWSTR) -> Result<()>;
}

Required Methods§

fn Delete(&self) -> Result<()>

fn Save(&self) -> Result<()>

fn Add(&self, paggregateid: &PCWSTR) -> Result<()>

fn Remove(&self, paggregateid: &PCWSTR) -> Result<()>

fn Members(&self) -> Result<IContactAggregationAggregateCollection>

fn GlobalObjectId(&self) -> Result<GUID>

fn SetGlobalObjectId(&self, pglobalobjectid: *const GUID) -> Result<()>

fn Id(&self) -> Result<PWSTR>

fn Name(&self) -> Result<PWSTR>

fn SetName(&self, pname: &PCWSTR) -> Result<()>

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.

Implementors§