Home
last modified time | relevance | path

Searched refs:into_future (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/futures-util/src/future/try_future/
Dmod.rs26 mod into_future; module
104 pub use self::into_future::IntoFuture;
604 fn into_future(self) -> IntoFuture<Self> in into_future() method
/external/rust/crates/futures-util/src/stream/stream/
Dmod.rs94 mod into_future; module
96 pub use self::into_future::StreamFuture;
271 fn into_future(self) -> StreamFuture<Self> in into_future() method
/external/rust/crates/futures-util/src/stream/try_stream/
Dtry_buffered.rs60 Poll::Ready(Some(fut)) => this.in_progress_queue.push(fut.into_future()), in poll_next()
Dtry_buffer_unordered.rs57 Poll::Ready(Some(fut)) => this.in_progress_queue.push(fut.into_future()), in poll_next()
/external/rust/crates/futures-util/src/stream/
Dselect_all.rs65 self.inner.push(stream.into_future()); in push()
/external/rust/crates/futures/tests_disabled/
Dall.rs349 assert_eq!(Ok(Some(())), block_on(Some(ok::<(), ()>(())).into_future())); in option()
350 assert_eq!(Ok::<_, ()>(None::<()>), block_on(None::<FutureResult<(), ()>>.into_future())); in option()
/external/crosvm/devices/src/virtio/
Dblock_async.rs526 .into_future(); in run_worker()