Skip to main content

ExecFuture

Type Alias ExecFuture 

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

The boxed future every trait method returns.

Plain std, no futures-crate dependency. 'a is the transient borrow of the executor for the duration of one call — the same class of lifetime as SqlWriter<'_>, and the only one this crate’s public surface has.

Aliased Type§

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