Type Alias Future

Source
pub type Future<T> = Pin<Box<dyn StdFuture<Output = Result<T>> + Send>>;
Expand description

A type alias for Future that may return crate::error::Error

Aliased Typeยง

pub struct Future<T> { /* private fields */ }