pub trait IContactManagerInterop_Impl: Sized {
    // Required method
    fn ShowContactCardForWindow(
        &self,
        appwindow: HWND,
        contact: Option<&IUnknown>,
        selection: *const RECT,
        preferredplacement: FLYOUT_PLACEMENT
    ) -> Result<()>;
}

Required Methods§

fn ShowContactCardForWindow( &self, appwindow: HWND, contact: Option<&IUnknown>, selection: *const RECT, preferredplacement: FLYOUT_PLACEMENT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§