Struct windows::Win32::System::Contacts::IContactAggregationManager
pub struct IContactAggregationManager(/* private fields */);
Implementations§
§impl IContactAggregationManager
impl IContactAggregationManager
pub unsafe fn GetVersionInfo( &self, plmajorversion: *mut i32, plminorversion: *mut i32, ) -> Result<()>
pub unsafe fn CreateOrOpenGroup<P0>(
&self,
pgroupname: P0,
options: CONTACT_AGGREGATION_CREATE_OR_OPEN_OPTIONS,
pcreatedgroup: *mut BOOL,
) -> Result<IContactAggregationGroup>where
P0: Param<PCWSTR>,
pub unsafe fn CreateExternalContact(&self) -> Result<IContactAggregationContact>
pub unsafe fn CreateServerPerson( &self, ) -> Result<IContactAggregationServerPerson>
pub unsafe fn CreateServerContactLink(&self) -> Result<IContactAggregationLink>
pub unsafe fn Flush(&self) -> Result<()>
pub unsafe fn OpenAggregateContact<P0>(
&self,
pitemid: P0,
) -> Result<IContactAggregationAggregate>where
P0: Param<PCWSTR>,
pub unsafe fn OpenContact<P0>(
&self,
pitemid: P0,
) -> Result<IContactAggregationContact>where
P0: Param<PCWSTR>,
pub unsafe fn OpenServerContactLink<P0>(
&self,
pitemid: P0,
) -> Result<IContactAggregationLink>where
P0: Param<PCWSTR>,
pub unsafe fn OpenServerPerson<P0>(
&self,
pitemid: P0,
) -> Result<IContactAggregationServerPerson>where
P0: Param<PCWSTR>,
pub unsafe fn get_Contacts( &self, options: CONTACT_AGGREGATION_COLLECTION_OPTIONS, ) -> Result<IContactAggregationContactCollection>
pub unsafe fn get_AggregateContacts( &self, options: CONTACT_AGGREGATION_COLLECTION_OPTIONS, ) -> Result<IContactAggregationAggregateCollection>
pub unsafe fn get_Groups( &self, options: CONTACT_AGGREGATION_COLLECTION_OPTIONS, ) -> Result<IContactAggregationGroupCollection>
pub unsafe fn ServerPersons( &self, ) -> Result<IContactAggregationServerPersonCollection>
pub unsafe fn get_ServerContactLinks<P0>(
&self,
ppersonitemid: P0,
) -> Result<IContactAggregationLinkCollection>where
P0: Param<PCWSTR>,
Trait Implementations§
§impl CanInto<IUnknown> for IContactAggregationManager
impl CanInto<IUnknown> for IContactAggregationManager
§impl Clone for IContactAggregationManager
impl Clone for IContactAggregationManager
§fn clone(&self) -> IContactAggregationManager
fn clone(&self) -> IContactAggregationManager
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IContactAggregationManager
impl Debug for IContactAggregationManager
§impl Deref for IContactAggregationManager
impl Deref for IContactAggregationManager
§impl From<&IContactAggregationManager> for &IUnknown
impl From<&IContactAggregationManager> for &IUnknown
§fn from(value: &IContactAggregationManager) -> Self
fn from(value: &IContactAggregationManager) -> Self
Converts to this type from the input type.
§impl From<IContactAggregationManager> for IUnknown
impl From<IContactAggregationManager> for IUnknown
§fn from(value: IContactAggregationManager) -> Self
fn from(value: IContactAggregationManager) -> Self
Converts to this type from the input type.
§impl Interface for IContactAggregationManager
impl Interface for IContactAggregationManager
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IContactAggregationManager
impl PartialEq for IContactAggregationManager
§fn eq(&self, other: &IContactAggregationManager) -> bool
fn eq(&self, other: &IContactAggregationManager) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IContactAggregationManager
impl StructuralPartialEq for IContactAggregationManager
Auto Trait Implementations§
impl Freeze for IContactAggregationManager
impl RefUnwindSafe for IContactAggregationManager
impl !Send for IContactAggregationManager
impl !Sync for IContactAggregationManager
impl Unpin for IContactAggregationManager
impl UnwindSafe for IContactAggregationManager
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)