pub trait IAuthenticate_Impl: Sized {
    // Required method
    fn Authenticate(
        &self,
        phwnd: *mut HWND,
        pszusername: *mut PWSTR,
        pszpassword: *mut PWSTR
    ) -> Result<()>;
}

Required Methods§

fn Authenticate( &self, phwnd: *mut HWND, pszusername: *mut PWSTR, pszpassword: *mut PWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§