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

Required Methods§

fn Begin_AuthenticateUser( &self, pszsessionid: &PCWSTR, pszsitename: &PCWSTR, pszusername: &PCWSTR, pszpassword: &PCWSTR ) -> Result<()>

fn Finish_AuthenticateUser( &self, ppszcanonicalusername: *mut PWSTR, pfauthenticated: *mut BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§