windows::Win32::System::Iis

Trait AsyncIFtpAuthenticationProvider_Impl

pub trait AsyncIFtpAuthenticationProvider_Impl: IUnknownImpl {
    // 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<()>

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§