windows::Win32::System::WinRT

Trait IWebAuthenticationCoreManagerInterop_Impl

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

Required Methods§

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

fn RequestTokenWithWebAccountForWindowAsync( &self, appwindow: HWND, request: Ref<'_, IInspectable>, webaccount: Ref<'_, IInspectable>, riid: *const GUID, asyncinfo: *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.

Implementors§