pub type AsyncAuthHandler = Pin<Box<dyn Future<Output = AuthFrameworkResult<()>> + Send>>;Expand description
A boxed, Send-safe async future returning AuthFrameworkResult<()>.
Useful for storing async handler callbacks in collections.
Aliased Typeยง
pub struct AsyncAuthHandler { /* private fields */ }