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