futures-core-preview 0.3.0-alpha.4

The core traits and types in for the `futures` library.
Build #115330 2018-09-02T19:17:54.649581+00:00
# rustc version
rustc 1.28.0-dev (b9bf4f162 2018-06-02)
# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Fresh either v1.5.0
Documenting futures-core-preview v0.3.0-alpha.4
Running `rustdoc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg 'feature="either"' --cfg 'feature="default"' --cfg 'feature="std"' -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0`
error[E0432]: unresolved import `core::pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/future.rs:4:11
|
4 | use core::pin::PinMut;
|           ^^^ Could not find `pin` in `core`

error[E0432]: unresolved import `core::future`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/future.rs:6:15
|
6 | pub use core::future::{Future, FutureObj, LocalFutureObj, UnsafeFutureObj};
|               ^^^^^^ Could not find `future` in `core`

error[E0432]: unresolved import `core::pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:5:11
|
5 | use core::pin::PinMut;
|           ^^^ Could not find `pin` in `core`

error[E0432]: unresolved import `either`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:8:5
|
8 | use either::Either;
|     ^^^^^^ Maybe a missing `extern crate either;`?

error[E0432]: unresolved import `core::pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:5:11
|
5 | use core::pin::PinMut;
|           ^^^ Could not find `pin` in `core`

error[E0432]: unresolved import `core::task`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/task.rs:3:15
|
3 | pub use core::task::{
|               ^^^^ Could not find `task` in `core`

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:196:9
|
196 |     use std::boxed::Box;
|         ^^^ Maybe a missing `extern crate std;`?

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:197:9
|
197 |     use std::pin::PinBox;
|         ^^^ Maybe a missing `extern crate std;`?

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:131:9
|
131 |     use std::boxed::Box;
|         ^^^ Maybe a missing `extern crate std;`?

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:132:9
|
132 |     use std::pin::PinBox;
|         ^^^ Maybe a missing `extern crate std;`?

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/task.rs:10:13
|
10 |     pub use std::task::{Wake, local_waker, local_waker_from_nonlocal};
|             ^^^ Maybe a missing `extern crate std;`?

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:156:34
|
156 |     impl<S: Stream> Stream for ::std::panic::AssertUnwindSafe<S> {
|                                  ^^^ Maybe a missing `extern crate std;`?

error[E0433]: failed to resolve. Maybe a missing `extern crate std;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:167:33
|
167 |     impl<T: Unpin> Stream for ::std::collections::VecDeque<T> {
|                                 ^^^ Maybe a missing `extern crate std;`?

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/future.rs:25:10
|
25 |     ) -> Poll<Result<Self::Ok, Self::Error>>;
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/future.rs:35:64
|
35 |     fn try_poll(self: PinMut<Self>, cx: &mut task::Context) -> Poll<F::Output> {
|                                                                ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:20:61
|
20 |     poll_next_fn: unsafe fn(*mut (), &mut task::Context) -> Poll<Option<T>>,
|                                                             ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:69:10
|
69 |     ) -> Poll<Option<T>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:117:10
|
117 |     ) -> Poll<Option<T>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:147:10
|
147 |     ) -> Poll<Option<T>>;
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:170:10
|
170 |     ) -> Poll<Option<T>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:188:10
|
188 |     ) -> Poll<Option<T>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Box` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:199:54
|
199 |     unsafe impl<'a, T, F> UnsafeStreamObj<'a, T> for Box<F>
|                                                      ^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:206:70
|
206 |         unsafe fn poll_next(ptr: *mut (), cx: &mut task::Context) -> Poll<Option<T>> {
|                                                                      ^^^^ not found in this scope

error[E0412]: cannot find type `PinBox` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:217:54
|
217 |     unsafe impl<'a, T, F> UnsafeStreamObj<'a, T> for PinBox<F>
|                                                      ^^^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:224:70
|
224 |         unsafe fn poll_next(ptr: *mut (), cx: &mut task::Context) -> Poll<Option<T>> {
|                                                                      ^^^^ not found in this scope

error[E0412]: cannot find type `PinBox` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:235:53
|
235 |     impl<'a, F: Stream<Item = ()> + Send + 'a> From<PinBox<F>> for StreamObj<'a, ()> {
|                                                     ^^^^^^ not found in this scope

error[E0412]: cannot find type `PinBox` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:236:24
|
236 |         fn from(boxed: PinBox<F>) -> Self {
|                        ^^^^^^ not found in this scope

error[E0412]: cannot find type `Box` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:241:53
|
241 |     impl<'a, F: Stream<Item = ()> + Send + 'a> From<Box<F>> for StreamObj<'a, ()> {
|                                                     ^^^ not found in this scope

error[E0412]: cannot find type `Box` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:242:24
|
242 |         fn from(boxed: Box<F>) -> Self {
|                        ^^^ not found in this scope

error[E0412]: cannot find type `PinBox` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:247:46
|
247 |     impl<'a, F: Stream<Item = ()> + 'a> From<PinBox<F>> for LocalStreamObj<'a, ()> {
|                                              ^^^^^^ not found in this scope

error[E0412]: cannot find type `PinBox` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:248:24
|
248 |         fn from(boxed: PinBox<F>) -> Self {
|                        ^^^^^^ not found in this scope

error[E0412]: cannot find type `Box` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:253:46
|
253 |     impl<'a, F: Stream<Item = ()> + 'a> From<Box<F>> for LocalStreamObj<'a, ()> {
|                                              ^^^ not found in this scope

error[E0412]: cannot find type `Box` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:254:24
|
254 |         fn from(boxed: Box<F>) -> Self {
|                        ^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:57:10
|
57 |     ) -> Poll<Option<Self::Item>>;
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:66:10
|
66 |     ) -> Poll<Option<Self::Item>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:77:10
|
77 |     ) -> Poll<Option<Self::Item>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:89:65
|
89 |     fn poll_next(self: PinMut<Self>, cx: &mut task::Context) -> Poll<Option<A::Item>> {
|                                                                 ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:114:12
|
114 |         -> Poll<Option<Result<Self::Ok, Self::Error>>>;
|            ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:124:12
|
124 |         -> Poll<Option<Result<Self::Ok, Self::Error>>>
|            ^^^^ not found in this scope

error[E0412]: cannot find type `Box` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:134:49
|
134 |     impl<S: ?Sized + Stream + Unpin> Stream for Box<S> {
|                                                 ^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:140:14
|
140 |         ) -> Poll<Option<Self::Item>> {
|              ^^^^ not found in this scope

error[E0412]: cannot find type `PinBox` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:145:41
|
145 |     impl<S: ?Sized + Stream> Stream for PinBox<S> {
|                                         ^^^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:151:14
|
151 |         ) -> Poll<Option<Self::Item>> {
|              ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:162:14
|
162 |         ) -> Poll<Option<S::Item>> {
|              ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:173:14
|
173 |         ) -> Poll<Option<Self::Item>> {
|              ^^^^ not found in this scope

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs:12:24
|
12 | #[doc(hidden)] pub use crate::future::Future;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs:13:24
|
13 | #[doc(hidden)] pub use crate::future::TryFuture;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs:15:24
|
15 | #[doc(hidden)] pub use crate::stream::Stream;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs:16:24
|
16 | #[doc(hidden)] pub use crate::stream::TryStream;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs:18:24
|
18 | #[doc(hidden)] pub use crate::task::Poll;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/future.rs:3:5
|
3 | use crate::task::{self, Poll};
|     ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/mod.rs:3:5
|
3 | use crate::task::{self, Poll};
|     ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/stream/stream_obj.rs:2:5
|
2 | use crate::task::{self, Poll};
|     ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `futures-core-preview`.,
cause: process didn't exit successfully: `rustdoc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.4/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg feature="either" --cfg feature="default" --cfg feature="std" -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.