pub trait SaslAuthenticatorProvider {
// Required methods
fn name(&self) -> Option<&str>;
fn create_authenticator(&self) -> Box<dyn SaslAuthenticator + Send>;
}
Expand description
Provides authenticators per new connection.
pub trait SaslAuthenticatorProvider {
// Required methods
fn name(&self) -> Option<&str>;
fn create_authenticator(&self) -> Box<dyn SaslAuthenticator + Send>;
}
Provides authenticators per new connection.