pub trait Authenticator: Clone + Send + Sync {
    fn get_auth_token(&self) -> CBytes;
    fn get_cassandra_name(&self) -> Option<&str>;
}

Required Methods

Implementors