FailFuture

Type Alias FailFuture 

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

Fallible future type yielding either T or Error.

Aliased Typeยง

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