pub type FailFuture<'a, T> = Pin<Box<dyn Send + Future<Output = Result<T>> + 'a>>;
Fallible future type yielding either T or Error.
T
Error
pub struct FailFuture<'a, T> { /* private fields */ }