Type Alias schema_connector::BoxFuture

source ·
pub type BoxFuture<'a, O> = Pin<Box<dyn Future<Output = O> + Send + 'a>>;
Expand description

Alias for a pinned, boxed future, used by the traits.

Aliased Type§

struct BoxFuture<'a, O> { /* private fields */ }