pub type TokenStoreFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T>> + Send + 'a>>;Expand description
The future returned by TokenStore methods: a boxed, Send future
borrowing the store and the request context.
Aliased Typeยง
pub struct TokenStoreFuture<'a, T> { /* private fields */ }