pub trait IFtpAuthenticationProvider_Impl: Sized {
    // Required method
    fn AuthenticateUser(
        &self,
        pszsessionid: &PCWSTR,
        pszsitename: &PCWSTR,
        pszusername: &PCWSTR,
        pszpassword: &PCWSTR,
        ppszcanonicalusername: *mut PWSTR,
        pfauthenticated: *mut BOOL
    ) -> Result<()>;
}

Required Methods§

fn AuthenticateUser( &self, pszsessionid: &PCWSTR, pszsitename: &PCWSTR, pszusername: &PCWSTR, pszpassword: &PCWSTR, ppszcanonicalusername: *mut PWSTR, pfauthenticated: *mut BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§