pub type ArtifactFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, EngineError>> + Send + 'a>>;Expand description
Boxed future returned by ArtifactSink methods – keeps the trait object safe.
Aliased Type§
pub struct ArtifactFuture<'a, T> { /* private fields */ }