Searched defs:BoxFuture (Results 1 – 8 of 8) sorted by relevance
17 type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>; typedef181 fn execute(&self, fut: BoxFuture<()>) { in execute()
19 pub type BoxFuture<T, E> = self::Pin<Box<dyn self::Future<Output = Result<T, E>> + Send + 'static>>; typedef
125 type BoxFuture<'a, T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + 'a>>; typedef
22 pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>; typedef
30 type BoxFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>; typedef
18 pub type BoxFuture<'a, T> = Pin<alloc::boxed::Box<dyn Future<Output = T> + Send + 'a>>; typedef
39 type BoxFuture<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T>>>; typedef
118 type BoxFuture<'a, T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + 'a>>; typedef