TryFuture

Trait TryFuture 

Source
pub trait TryFuture<T, E>: Future<Output = Result<T, E>> { }
Expand description

A Future that returns a result.

Implementors§

Source§

impl<F, T, E> TryFuture<T, E> for F
where F: Future<Output = Result<T, E>>,