Trait IAccountsSettingsPaneInterop_Impl
pub trait IAccountsSettingsPaneInterop_Impl: IUnknownImpl {
// Required methods
fn GetForWindow(
&self,
appwindow: HWND,
riid: *const GUID,
accountssettingspane: *mut *mut c_void,
) -> Result<()>;
fn ShowManageAccountsForWindowAsync(
&self,
appwindow: HWND,
riid: *const GUID,
asyncaction: *mut *mut c_void,
) -> Result<()>;
fn ShowAddAccountForWindowAsync(
&self,
appwindow: HWND,
riid: *const GUID,
asyncaction: *mut *mut c_void,
) -> Result<()>;
}
Required Methods§
fn GetForWindow( &self, appwindow: HWND, riid: *const GUID, accountssettingspane: *mut *mut c_void, ) -> Result<()>
fn ShowManageAccountsForWindowAsync( &self, appwindow: HWND, riid: *const GUID, asyncaction: *mut *mut c_void, ) -> Result<()>
fn ShowAddAccountForWindowAsync( &self, appwindow: HWND, riid: *const GUID, asyncaction: *mut *mut c_void, ) -> 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.