Searched refs:into_future (Results 1 – 10 of 10) sorted by relevance
26 mod into_future; module104 pub use self::into_future::IntoFuture;610 fn into_future(self) -> IntoFuture<Self> in into_future() method
57 Poll::Ready(Some(fut)) => this.in_progress_queue.push_back(fut.into_future()), in poll_next()
56 Poll::Ready(Some(fut)) => this.in_progress_queue.push(fut.into_future()), in poll_next()
106 mod into_future; module108 pub use self::into_future::StreamFuture;308 fn into_future(self) -> StreamFuture<Self> in into_future() method
122 let iter = iter.into_iter().map(TryFutureExt::into_future); in try_join_all()
70 self.inner.push(stream.into_future()); in push()
398 assert_eq!(Ok(Some(())), block_on(Some(ok::<(), ()>(())).into_future())); in option()399 assert_eq!(Ok::<_, ()>(None::<()>), block_on(None::<FutureResult<(), ()>>.into_future())); in option()
305 self.worker_future = Some(Box::new(ex.spawn_local(f).into_future())); in prepare()
542 .into_future(); in run_worker()
353 "//third_party/rust-toolchain/lib/rustlib/src/rust/library/core/src/future/into_future.rs",