pub trait CustomVerifier: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn verify<'life0, 'life1, 'async_trait>(
&'life0 self,
group: &'life1 DedupedMatch,
) -> Pin<Box<dyn Future<Output = (VerificationResult, HashMap<String, String>)> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
A trait for custom verification logic (OAuth2, multi-step, etc).