Home
last modified time | relevance | path

Searched defs:BoxFuture (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/futures-core/src/
Dfuture.rs13 pub type BoxFuture<'a, T> = Pin<alloc::boxed::Box<dyn Future<Output = T> + Send + 'a>>; typedef
/external/rust/crates/tokio/tests/
Dasync_send_sync.rs36 type BoxFuture<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T>>>; typedef