Home
last modified time | relevance | path

Searched defs:IntoFuture (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/src/future/
H A Dinto_future.rs108 pub trait IntoFuture { interface
115 type IntoFuture: Future<Output = Self::Output>; typedef
134 fn into_future(self) -> Self::IntoFuture; in into_future()
140 type IntoFuture = F; typedef
142 fn into_future(self) -> Self::IntoFuture { in into_future()
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/src/future/
H A Dinto_future.rs108 pub trait IntoFuture { trait
115 type IntoFuture: Future<Output = Self::Output>; typedef
134 fn into_future(self) -> Self::IntoFuture; in into_future()
140 type IntoFuture = F; typedef
142 fn into_future(self) -> Self::IntoFuture { in into_future()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/src/future/
H A Dinto_future.rs108 pub trait IntoFuture { trait
115 type IntoFuture: Future<Output = Self::Output>; typedef
134 fn into_future(self) -> Self::IntoFuture; in into_future()
140 type IntoFuture = F; typedef
142 fn into_future(self) -> Self::IntoFuture { in into_future()
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/src/future/
H A Dinto_future.rs108 pub trait IntoFuture { trait
115 type IntoFuture: Future<Output = Self::Output>; typedef
134 fn into_future(self) -> Self::IntoFuture; in into_future()
140 type IntoFuture = F; typedef
142 fn into_future(self) -> Self::IntoFuture { in into_future()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/src/future/
H A Dinto_future.rs108 pub trait IntoFuture { trait
115 type IntoFuture: Future<Output = Self::Output>; typedef
134 fn into_future(self) -> Self::IntoFuture; in into_future()
140 type IntoFuture = F; typedef
142 fn into_future(self) -> Self::IntoFuture { in into_future()
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/future/try_future/
Dinto_future.rs16 impl<Fut> IntoFuture<Fut> { impl
23 impl<Fut: TryFuture + FusedFuture> FusedFuture for IntoFuture<Fut> { implementation
29 impl<Fut: TryFuture> Future for IntoFuture<Fut> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/time/
Dtimeout.rs86 pub fn timeout<F>(duration: Duration, future: F) -> Timeout<F::IntoFuture> in timeout()
145 pub fn timeout_at<F>(deadline: Instant, future: F) -> Timeout<F::IntoFuture> in timeout_at()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/
Dmacros_join.rs168 type IntoFuture = std::future::Ready<()>; in join_into_future() typedef
170 fn into_future(self) -> Self::IntoFuture { in join_into_future()
Dmacros_select.rs701 type IntoFuture = std::future::Ready<()>; in select_into_future() typedef
703 fn into_future(self) -> Self::IntoFuture { in select_into_future()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/future/
Dmaybe_done.rs26 pub fn maybe_done<F: IntoFuture>(future: F) -> MaybeDone<F::IntoFuture> { in maybe_done()