Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/ffi/
Dtask.rs17 type BoxFuture<T> = Pin<Box<dyn Future<Output = T> + Send>>; typedef
181 fn execute(&self, fut: BoxFuture<()>) { in execute()
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/
Dcodegen.rs19 pub type BoxFuture<T, E> = self::Pin<Box<dyn self::Future<Output = Result<T, E>> + Send + 'static>>; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/transport/
Dmod.rs125 type BoxFuture<'a, T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + 'a>>; typedef
/aosp_15_r20/frameworks/native/libs/binder/rust/src/
H A Dbinder_async.rs22 pub type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/util/boxed/
Dsync.rs30 type BoxFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/futures-core/src/
Dfuture.rs18 pub type BoxFuture<'a, T> = Pin<alloc::boxed::Box<dyn Future<Output = T> + Send + 'a>>; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/
Dasync_send_sync.rs39 type BoxFuture<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T>>>; typedef
/aosp_15_r20/system/tools/aidl/tests/rust/
Dtest_service_async.rs118 type BoxFuture<'a, T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + 'a>>; typedef