Strategy

Type Alias Strategy 

Source
pub type Strategy = Box<dyn Fn(AuthInput) -> Pin<Box<dyn Future<Output = Result<Identity, AuthError>> + Send>> + Send + Sync>;

Aliased Typeยง

pub struct Strategy(/* private fields */);