pub trait IWebAuthenticationCoreManagerInterop_Impl: Sized {
    // Required methods
    fn RequestTokenForWindowAsync(
        &self,
        appwindow: HWND,
        request: Option<&IInspectable>,
        riid: *const GUID,
        asyncinfo: *mut *mut c_void
    ) -> Result<()>;
    fn RequestTokenWithWebAccountForWindowAsync(
        &self,
        appwindow: HWND,
        request: Option<&IInspectable>,
        webaccount: Option<&IInspectable>,
        riid: *const GUID,
        asyncinfo: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn RequestTokenForWindowAsync( &self, appwindow: HWND, request: Option<&IInspectable>, riid: *const GUID, asyncinfo: *mut *mut c_void ) -> Result<()>

fn RequestTokenWithWebAccountForWindowAsync( &self, appwindow: HWND, request: Option<&IInspectable>, webaccount: Option<&IInspectable>, riid: *const GUID, asyncinfo: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§