Build #53026 2017-06-03T03:26:02.567366+00:00
# rustc version
rustc 1.19.0-dev (28a93c1f4 2017-05-31)# docs.rs version
cratesfyi 0.4.0-dev (bedcc0c 2017-06-01)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading event v0.2.1
Fresh libc v0.2.23
Fresh lazycell v0.4.0
Fresh slab v0.3.0
Fresh log v0.3.8
Fresh cfg-if v0.1.0
Fresh iovec v0.1.0
Fresh net2 v0.2.29
Fresh mio v0.6.8
Documenting event v0.2.1
Running `rustdoc --crate-name event .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern mio=/home/cratesfyi/cratesfyi/debug/deps/libmio-bf4b1735dd29d9ed.rlib --extern-version mio=mio,0.6.8 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8`
error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:23:41
|
23 | Registration::Timeout(box move |:_| { callback() }, timeout)
| ^
error: expected expression, found `_`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:23:42
|
23 | Registration::Timeout(box move |:_| { callback() }, timeout)
| ^
error: expected one of `->`, `.`, `;`, `<`, `?`, `break`, `continue`, `false`, `for`, `if`, `loop`, `match`, `move`, `return`, `true`, `unsafe`, `while`, `}`, or an operator, found `_`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:23:42
|
23 | Registration::Timeout(box move |:_| { callback() }, timeout)
| ^ expected one of 19 possible tokens here
error: expected pattern, found `:`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:27:38
|
27 | Registration::Next(box move |:_| { callback() })
| ^
error: expected expression, found `_`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:27:39
|
27 | Registration::Next(box move |:_| { callback() })
| ^
error: expected one of `->`, `.`, `;`, `<`, `?`, `break`, `continue`, `false`, `for`, `if`, `loop`, `match`, `move`, `return`, `true`, `unsafe`, `while`, `}`, or an operator, found `_`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:27:39
|
27 | Registration::Next(box move |:_| { callback() })
| ^ expected one of 19 possible tokens here
error[E0432]: unresolved import `std::thunk::Invoke`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:1:5
|
1 | use std::thunk::Invoke;
| ^^^^^^^^^^^^^^^^^^ Could not find `thunk` in `std`
error[E0432]: unresolved import `mio::util::Slab`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:3:5
|
3 | use mio::util::Slab;
| ^^^^^^^^^^^^^^^ Could not find `util` in `mio`
error[E0432]: unresolved import `mio::EventLoop`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:4:11
|
4 | use mio::{EventLoop, EventLoopSender, Token, IoDesc, event};
| ^^^^^^^^^ no `EventLoop` in the root
error[E0432]: unresolved import `mio::EventLoopSender`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:4:22
|
4 | use mio::{EventLoop, EventLoopSender, Token, IoDesc, event};
| ^^^^^^^^^^^^^^^ no `EventLoopSender` in the root
error[E0432]: unresolved import `mio::IoDesc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:4:46
|
4 | use mio::{EventLoop, EventLoopSender, Token, IoDesc, event};
| ^^^^^^ no `IoDesc` in the root. Did you mean to use `IoVec`?
error[E0432]: unresolved import `mio::Handler`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:5:5
|
5 | use mio::Handler as MioHandler;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `Handler` in the root
error[E0432]: unresolved import `mio::MioError`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/error.rs:1:5
|
1 | use mio::MioError;
| ^^^^^^^^^^^^^ no `MioError` in the root
error[E0432]: unresolved import `std::error::FromError`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/error.rs:2:5
|
2 | use std::error::FromError;
| ^^^^^^^^^^^^^^^^^^^^^ no `FromError` in `error`
error[E0432]: unresolved import `mio::IoDesc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:1:11
|
1 | use mio::{IoDesc, IoHandle, event};
| ^^^^^^ no `IoDesc` in the root. Did you mean to use `IoVec`?
error[E0432]: unresolved import `mio::IoHandle`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:1:19
|
1 | use mio::{IoDesc, IoHandle, event};
| ^^^^^^^^ no `IoHandle` in the root
error[E0432]: unresolved import `std::thunk::Invoke`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:2:5
|
2 | use std::thunk::Invoke;
| ^^^^^^^^^^^^^^^^^^ Could not find `thunk` in `std`
error[E0432]: unresolved import `mio::IoDesc`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/util.rs:1:11
|
1 | use mio::{IoDesc, IoHandle};
| ^^^^^^ no `IoDesc` in the root. Did you mean to use `IoVec`?
error[E0432]: unresolved import `mio::IoHandle`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/util.rs:1:19
|
1 | use mio::{IoDesc, IoHandle};
| ^^^^^^^^ no `IoHandle` in the root
error[E0412]: cannot find type `uint` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:15:22
|
15 | const MAX_LISTENERS: uint = 64 * 1024;
| ^^^^ not found in this scope
error[E0412]: cannot find type `ReadHint` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:71:30
|
71 | hint: event::ReadHint) {
| ^^^^^^^^ not found in `event`
error[E0425]: cannot find value `READABLE` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:116:45
|
116 | handler.interest().unwrap_or(event::READABLE),
| ^^^^^^^^ not found in `event`
error[E0425]: cannot find value `LEVEL` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:117:40
|
117 | handler.opt().unwrap_or(event::LEVEL)
| ^^^^^ not found in `event`
error[E0425]: cannot find value `READABLE` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:125:45
|
125 | handler.interest().unwrap_or(event::READABLE),
| ^^^^^^^^ not found in `event`
error[E0425]: cannot find value `LEVEL` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:126:40
|
126 | handler.opt().unwrap_or(event::LEVEL)
| ^^^^^ not found in `event`
error: cannot find derive macro `Show` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/error.rs:6:23
|
6 | #[derive(Copy, Clone, Show, PartialEq)]
| ^^^^
error[E0412]: cannot find type `ReadHint` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:4:41
|
4 | fn readable(&mut self, hint: event::ReadHint) -> bool;
| ^^^^^^^^ not found in `event`
error[E0412]: cannot find type `Interest` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:8:41
|
8 | fn interest(&self) -> Option<event::Interest> { None }
| ^^^^^^^^ not found in `event`
error[E0412]: cannot find type `PollOpt` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:9:36
|
9 | fn opt(&self) -> Option<event::PollOpt> { None }
| ^^^^^^^ not found in `event`
|
help: possible candidate is found in another module, you can import it into scope
| use mio::PollOpt;
error[E0412]: cannot find type `Interest` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:16:33
|
16 | pub interest: Option<event::Interest>,
| ^^^^^^^^ not found in `event`
error[E0412]: cannot find type `PollOpt` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:17:28
|
17 | pub opt: Option<event::PollOpt>
| ^^^^^^^ not found in `event`
|
help: possible candidate is found in another module, you can import it into scope
| use mio::PollOpt;
error[E0412]: cannot find type `ReadHint` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:22:38
|
22 | R: Send + FnMut(&mut I, event::ReadHint) -> bool,
| ^^^^^^^^ not found in `event`
error[E0412]: cannot find type `ReadHint` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:24:41
|
24 | fn readable(&mut self, hint: event::ReadHint) -> bool {
| ^^^^^^^^ not found in `event`
error[E0412]: cannot find type `Interest` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:36:41
|
36 | fn interest(&self) -> Option<event::Interest> {
| ^^^^^^^^ not found in `event`
error[E0412]: cannot find type `PollOpt` in module `event`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/handler.rs:40:36
|
40 | fn opt(&self) -> Option<event::PollOpt> {
| ^^^^^^^ not found in `event`
|
help: possible candidate is found in another module, you can import it into scope
| use mio::PollOpt;
error: module `duration` is private
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/lib.rs:9:5
|
9 | use std::time::duration::Duration;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: module `duration` is private
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:3:5
|
3 | use std::time::duration::Duration;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error(s)
thread 'main' panicked at 'ChainedError {
error: Could not document `event`.,
cause: process didn't exit successfully: `rustdoc --crate-name event .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern mio=/home/cratesfyi/cratesfyi/debug/deps/libmio-bf4b1735dd29d9ed.rlib --extern-version mio=mio,0.6.8 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-4cfe391024f1467d.rlib --extern-version log=log,0.3.8` (exit code: 101)
}', src/bin/cratesfyi.rs:136
note: Run with `RUST_BACKTRACE=1` for a backtrace.