Skip to main content

ModelFuture

Type Alias ModelFuture 

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

A boxed, sendable future returned by a model implementation.

Aliased Typeยง

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