Build #122197 2018-10-19T03:05:19.334514+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`
Downloading futures-io-preview v0.3.0-alpha.9
Downloading futures-core-preview v0.3.0-alpha.9
Fresh libc v0.2.43
Fresh either v1.5.0
Fresh iovec v0.1.2
Compiling futures-core-preview v0.3.0-alpha.9
Running `rustc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg 'feature="std"' --cfg 'feature="either"' -C metadata=d8ff67269d8fac51 -C extra-filename=-d8ff67269d8fac51 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0 --cap-lints allow`
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:4:5
|
4 | use core::pin::Pin;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:6:9
|
6 | pub use core::future::Future;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0432]: unresolved import `core`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:1:5
|
1 | use core::{
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:1:5
|
1 | use core::{
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:4:5
|
4 | use core::marker::Unpin;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0432]: unresolved import `core`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:5:5
|
5 | use core::ops;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:6:5
|
6 | use core::pin::Pin;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0432]: unresolved import `either`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:9:5
|
9 | use either::Either;
| ^^^^^^ Maybe a missing `extern crate either;`?
error[E0432]: unresolved import `core`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:3:5
|
3 | use core::fmt;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:4:5
|
4 | use core::marker::{PhantomData, Unpin};
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:5:5
|
5 | use core::pin::Pin;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0432]: unresolved import `core`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/task/spawn.rs:2:5
|
2 | use core::fmt;
| ^^^^ Maybe a missing `extern crate core;`?
error[E0433]: failed to resolve. Maybe a missing `extern crate core;`?
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/task/mod.rs:6:9
|
6 | pub use core::task::{Poll, Waker, LocalWaker, UnsafeWake};
| ^^^^ Maybe a missing `extern crate core;`?
error[E0432]: unresolved import `std::task`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/task/mod.rs:8:18
|
8 | pub use std::task::{Wake, local_waker, local_waker_from_nonlocal};
| ^^^^ Could not find `task` in `std`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:121:13
|
121 | Pin::map_unchecked_mut(self, |x| &mut x.0)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:169:30
|
169 | let p: Pin<&mut F> = Pin::new_unchecked(&mut *(ptr as *mut F));
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:181:40
|
181 | let mut_ref: &mut F = unsafe { Pin::get_mut_unchecked(Pin::as_mut(&mut self)) };
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:181:63
|
181 | let mut_ref: &mut F = unsafe { Pin::get_mut_unchecked(Pin::as_mut(&mut self)) };
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:186:35
|
186 | let future: Pin<&mut F> = Pin::new_unchecked(&mut *(ptr as *mut F));
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:205:36
|
205 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:219:44
|
219 | let mut_ref: &mut F = unsafe { Pin::get_mut_unchecked(Pin::as_mut(&mut self)) };
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:219:67
|
219 | let mut_ref: &mut F = unsafe { Pin::get_mut_unchecked(Pin::as_mut(&mut self)) };
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:227:36
|
227 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:233:18
|
233 | drop(Pin::from(Box::from_raw(ptr as *mut F)));
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:118:37
|
118 | let pinned_field = unsafe { Pin::map_unchecked_mut(self, |x| &mut x.0) };
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:171:9
|
171 | Pin::new_unchecked(&mut *(ptr as *mut F)).poll_next(lw)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:182:18
|
182 | unsafe { Pin::get_mut_unchecked(self) as *mut F as *mut () }
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:189:9
|
189 | Pin::new_unchecked(&mut *(ptr as *mut F)).poll_next(lw)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:207:36
|
207 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:220:22
|
220 | unsafe { Pin::get_mut_unchecked(Pin::as_mut(&mut self)) as *mut F as *mut () }
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:220:45
|
220 | unsafe { Pin::get_mut_unchecked(Pin::as_mut(&mut self)) as *mut F as *mut () }
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:225:36
|
225 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:68:22
|
68 | S::poll_next(Pin::new(&mut **self), lw)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:83:9
|
83 | Pin::get_mut(self).as_mut().poll_next(lw)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:96:19
|
96 | match Pin::get_mut_unchecked(self) {
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:97:36
|
97 | Either::Left(a) => Pin::new_unchecked(a).poll_next(lw),
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:98:37
|
98 | Either::Right(b) => Pin::new_unchecked(b).poll_next(lw),
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:145:13
|
145 | Pin::new(&mut **self).poll_next(lw)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Pin`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:156:22
|
156 | unsafe { Pin::map_unchecked_mut(self, |x| &mut x.0) }.poll_next(lw)
| ^^^ Use of undeclared type or module `Pin`
error[E0433]: failed to resolve. Use of undeclared type or module `Poll`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:167:13
|
167 | Poll::Ready(self.pop_front())
| ^^^^ Use of undeclared type or module `Poll`
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:22:34
|
22 | poll_fn: unsafe fn(*mut (), &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:22:49
|
22 | poll_fn: unsafe fn(*mut (), &LocalWaker) -> Poll<T>,
| ^^^^ not found in this scope
error[E0412]: cannot find type `PhantomData` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:24:14
|
24 | _marker: PhantomData<&'a ()>,
| ^^^^^^^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::PhantomData;
|
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:27:13
|
27 | impl<'a, T> Unpin for LocalFutureObj<'a, T> {}
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::Unpin;
|
error[E0425]: cannot find value `PhantomData` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:37:22
|
37 | _marker: PhantomData,
| ^^^^^^^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::PhantomData;
|
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:65:13
|
65 | impl<'a, T> Future for LocalFutureObj<'a, T> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:69:19
|
69 | fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<T> {
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:69:40
|
69 | fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:69:55
|
69 | fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<T> {
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:97:13
|
97 | impl<'a, T> Unpin for FutureObj<'a, T> {}
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::Unpin;
|
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:115:13
|
115 | impl<'a, T> Future for FutureObj<'a, T> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:119:19
|
119 | fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<T> {
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:119:40
|
119 | fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:119:55
|
119 | fn poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<T> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:120:27
|
120 | let pinned_field: Pin<&mut LocalFutureObj<'a, T>> = unsafe {
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:148:39
|
148 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:148:54
|
148 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<T>;
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:162:8
|
162 | F: Future<Output = T> + Unpin + 'a
| ^^^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:162:29
|
162 | F: Future<Output = T> + Unpin + 'a
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::Unpin;
|
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:168:39
|
168 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:168:54
|
168 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<T> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:169:16
|
169 | let p: Pin<&mut F> = Pin::new_unchecked(&mut *(ptr as *mut F));
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:176:50
|
176 | unsafe impl<'a, T, F> UnsafeFutureObj<'a, T> for Pin<&'a mut F>
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:178:8
|
178 | F: Future<Output = T> + 'a
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:185:39
|
185 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:185:54
|
185 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<T> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:186:21
|
186 | let future: Pin<&mut F> = Pin::new_unchecked(&mut *(ptr as *mut F));
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:197:18
|
197 | where F: Future<Output = T> + 'a
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:203:43
|
203 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:203:58
|
203 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<T> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:205:22
|
205 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:214:54
|
214 | unsafe impl<'a, T, F> UnsafeFutureObj<'a, T> for Pin<Box<F>>
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:216:12
|
216 | F: Future<Output = T> + 'a
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:225:43
|
225 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<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.9/src/future/future_obj.rs:225:58
|
225 | unsafe fn poll(ptr: *mut (), lw: &LocalWaker) -> Poll<T> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:227:22
|
227 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:237:55
|
237 | impl<'a, F: Future<Output = ()> + Send + 'a> From<Pin<Box<F>>> for FutureObj<'a, ()> {
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:237:17
|
237 | impl<'a, F: Future<Output = ()> + Send + 'a> From<Pin<Box<F>>> for FutureObj<'a, ()> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:238:24
|
238 | fn from(boxed: Pin<Box<F>>) -> Self {
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:243:17
|
243 | impl<'a, F: Future<Output = ()> + Send + 'a> From<Box<F>> for FutureObj<'a, ()> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:249:48
|
249 | impl<'a, F: Future<Output = ()> + 'a> From<Pin<Box<F>>> for LocalFutureObj<'a, ()> {
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:249:17
|
249 | impl<'a, F: Future<Output = ()> + 'a> From<Pin<Box<F>>> for LocalFutureObj<'a, ()> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:250:24
|
250 | fn from(boxed: Pin<Box<F>>) -> Self {
| ^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/future_obj.rs:255:17
|
255 | impl<'a, F: Future<Output = ()> + 'a> From<Box<F>> for LocalFutureObj<'a, ()> {
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:26:15
|
26 | self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:27:14
|
27 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/future/mod.rs:28:10
|
28 | ) -> Poll<Result<Self::Ok, Self::Error>>;
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Future` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:32:14
|
32 | where F: Future<Output = Result<T, E>>
| ^^^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:38:23
|
38 | fn try_poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<F::Output> {
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/future/mod.rs:38:44
|
38 | fn try_poll(self: Pin<&mut Self>, lw: &LocalWaker) -> 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.9/src/future/mod.rs:38:59
|
38 | fn try_poll(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<F::Output> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:20:39
|
20 | poll_next_fn: unsafe fn(*mut (), &LocalWaker) -> 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.9/src/stream/stream_obj.rs:20:54
|
20 | poll_next_fn: unsafe fn(*mut (), &LocalWaker) -> Poll<Option<T>>,
| ^^^^ not found in this scope
error[E0412]: cannot find type `PhantomData` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:22:14
|
22 | _marker: PhantomData<&'a ()>,
| ^^^^^^^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::PhantomData;
|
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:25:13
|
25 | impl<'a, T> Unpin for LocalStreamObj<'a, T> {}
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::Unpin;
|
error[E0425]: cannot find value `PhantomData` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:35:22
|
35 | _marker: PhantomData,
| ^^^^^^^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::PhantomData;
|
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:67:15
|
67 | self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:68:14
|
68 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/stream_obj.rs:69:10
|
69 | ) -> Poll<Option<T>> {
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:93:13
|
93 | impl<'a, T> Unpin for StreamObj<'a, T> {}
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::Unpin;
|
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:115:15
|
115 | self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:116:14
|
116 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/stream_obj.rs:117:10
|
117 | ) -> Poll<Option<T>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:146:14
|
146 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/stream_obj.rs:147:10
|
147 | ) -> Poll<Option<T>>;
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:161:27
|
161 | F: Stream<Item = T> + Unpin + 'a,
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
1 | use std::marker::Unpin;
|
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:169:14
|
169 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/stream_obj.rs:170:10
|
170 | ) -> Poll<Option<T>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:177:50
|
177 | unsafe impl<'a, T, F> UnsafeStreamObj<'a, T> for Pin<&'a mut F>
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:187:14
|
187 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/stream_obj.rs:188:10
|
188 | ) -> Poll<Option<T>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:205:48
|
205 | unsafe fn poll_next(ptr: *mut (), lw: &LocalWaker) -> 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.9/src/stream/stream_obj.rs:205:63
|
205 | unsafe fn poll_next(ptr: *mut (), lw: &LocalWaker) -> Poll<Option<T>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:207:22
|
207 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:216:54
|
216 | unsafe impl<'a, T, F> UnsafeStreamObj<'a, T> for Pin<Box<F>>
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:223:48
|
223 | unsafe fn poll_next(ptr: *mut (), lw: &LocalWaker) -> 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.9/src/stream/stream_obj.rs:223:63
|
223 | unsafe fn poll_next(ptr: *mut (), lw: &LocalWaker) -> Poll<Option<T>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:225:22
|
225 | let pin: Pin<&mut F> = Pin::new_unchecked(&mut *ptr);
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:234:53
|
234 | impl<'a, F: Stream<Item = ()> + Send + 'a> From<Pin<Box<F>>> for StreamObj<'a, ()> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:235:24
|
235 | fn from(boxed: Pin<Box<F>>) -> Self {
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:246:46
|
246 | impl<'a, F: Stream<Item = ()> + 'a> From<Pin<Box<F>>> for LocalStreamObj<'a, ()> {
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/stream_obj.rs:247:24
|
247 | fn from(boxed: Pin<Box<F>>) -> Self {
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:56:15
|
56 | self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:57:14
|
57 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:58:10
|
58 | ) -> Poll<Option<Self::Item>>;
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:61:31
|
61 | impl<'a, S: ?Sized + Stream + Unpin> Stream for &'a mut S {
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
3 | use std::marker::Unpin;
|
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:65:19
|
65 | mut self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:66:14
|
66 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:67:10
|
67 | ) -> Poll<Option<Self::Item>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:72:20
|
72 | impl<P> Stream for Pin<P>
| ^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:80:15
|
80 | self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:81:14
|
81 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:82:10
|
82 | ) -> Poll<Option<Self::Item>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:94:24
|
94 | fn poll_next(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<Option<A::Item>> {
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:94:45
|
94 | fn poll_next(self: Pin<&mut Self>, lw: &LocalWaker) -> 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.9/src/stream/mod.rs:94:60
|
94 | fn poll_next(self: Pin<&mut Self>, lw: &LocalWaker) -> Poll<Option<A::Item>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:118:28
|
118 | fn try_poll_next(self: Pin<&mut Self>, lw: &LocalWaker)
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:118:49
|
118 | fn try_poll_next(self: Pin<&mut Self>, lw: &LocalWaker)
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:119:12
|
119 | -> Poll<Option<Result<Self::Ok, Self::Error>>>;
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:128:28
|
128 | fn try_poll_next(self: Pin<&mut Self>, lw: &LocalWaker)
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:128:49
|
128 | fn try_poll_next(self: Pin<&mut Self>, lw: &LocalWaker)
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:129:12
|
129 | -> Poll<Option<Result<Self::Ok, Self::Error>>>
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:138:31
|
138 | impl<S: ?Sized + Stream + Unpin> Stream for Box<S> {
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
3 | use std::marker::Unpin;
|
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:142:23
|
142 | mut self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:143:18
|
143 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:144:14
|
144 | ) -> Poll<Option<Self::Item>> {
| ^^^^ not found in this scope
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:153:19
|
153 | self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:154:18
|
154 | lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:155:14
|
155 | ) -> Poll<Option<S::Item>> {
| ^^^^ not found in this scope
error[E0405]: cannot find trait `Unpin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:160:13
|
160 | impl<T: Unpin> Stream for ::std::collections::VecDeque<T> {
| ^^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
3 | use std::marker::Unpin;
|
error[E0412]: cannot find type `Pin` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:164:23
|
164 | mut self: Pin<&mut Self>,
| ^^^ not found in this scope
error[E0412]: cannot find type `LocalWaker` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/stream/mod.rs:165:19
|
165 | _lw: &LocalWaker,
| ^^^^^^^^^^ 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.9/src/stream/mod.rs:166:14
|
166 | ) -> 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.9/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.9/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.9/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.9/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.9/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.9/src/future/mod.rs:3:5
|
3 | use crate::task::{LocalWaker, 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.9/src/stream/mod.rs:3:5
|
3 | use crate::task::{LocalWaker, 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.9/src/stream/stream_obj.rs:2:5
|
2 | use crate::task::{LocalWaker, 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.9/src/task/spawn.rs:1:5
|
1 | use crate::future::{FutureObj, LocalFutureObj};
| ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable
error: aborting due to 162 previous errors
Some errors occurred: E0405, E0412, E0425, E0432, E0433, E0658.
For more information about an error, try `rustc --explain E0405`.
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not compile `futures-core-preview`.,
cause: process didn't exit successfully: `rustc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.9/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg feature="std" --cfg feature="either" -C metadata=d8ff67269d8fac51 -C extra-filename=-d8ff67269d8fac51 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0 --cap-lints allow` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.