pub type CrudFut<'e, T> = Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'e>>;Expand description
Type alias for methods returning a single element. The future resolves to and
Result<T, sqlx::Error>.
Aliased Typeยง
pub struct CrudFut<'e, T> { /* private fields */ }