pub type AdapterFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, RustAuthError>> + Send + 'a>>;
Boxed async result returned by database adapter methods.
pub struct AdapterFuture<'a, T> { /* private fields */ }