Add BoxFuture helper type alias

This commit is contained in:
Nikolay Kim 2022-12-13 11:03:33 +01:00
parent 7774c58aff
commit 0217a2e835
3 changed files with 12 additions and 4 deletions

View file

@ -16,6 +16,10 @@ pub use self::lazy::{lazy, Lazy};
pub use self::ready::Ready;
pub use self::select::select;
/// An owned dynamically typed Future for use in cases where
/// you can't statically type your result or need to add some indirection.
pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;
/// Creates a new future wrapping around a function returning [`Poll`].
///
/// Polling the returned future delegates to the wrapped function.