Skip to main content

OrmFuture

Type Alias OrmFuture 

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

Runtime-neutral owned future used by async ORM session traits.

Aliased Typeยง

#[repr(transparent)]
pub struct OrmFuture<'a, T, E> { /* private fields */ }