windows::Win32::System::Contacts

Trait IContact_Impl

pub trait IContact_Impl: IUnknownImpl {
    // Required methods
    fn GetContactID(
        &self,
        pszcontactid: PWSTR,
        cchcontactid: u32,
        pdwcchcontactidrequired: *mut u32,
    ) -> Result<()>;
    fn GetPath(
        &self,
        pszpath: PWSTR,
        cchpath: u32,
        pdwcchpathrequired: *mut u32,
    ) -> Result<()>;
    fn CommitChanges(&self, dwcommitflags: u32) -> Result<()>;
}

Required Methods§

fn GetContactID( &self, pszcontactid: PWSTR, cchcontactid: u32, pdwcchcontactidrequired: *mut u32, ) -> Result<()>

fn GetPath( &self, pszpath: PWSTR, cchpath: u32, pdwcchpathrequired: *mut u32, ) -> Result<()>

fn CommitChanges(&self, dwcommitflags: u32) -> 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§