Searched defs:BoxFuture (Results 1 – 2 of 2) sorted by relevance
13 pub type BoxFuture<'a, T> = Pin<alloc::boxed::Box<dyn Future<Output = T> + Send + 'a>>; typedef
36 type BoxFuture<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T>>>; typedef