Skip to main content

AdapterFuture

Type Alias AdapterFuture 

Source
pub type AdapterFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, RustAuthError>> + Send + 'a>>;
Expand description

Boxed async result returned by database adapter methods.

Aliased Typeยง

pub struct AdapterFuture<'a, T> { /* private fields */ }