mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Add BoxFuture helper type alias
This commit is contained in:
parent
7774c58aff
commit
0217a2e835
3 changed files with 12 additions and 4 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue