event 0.2.1

A mulit-threaded event loop for Rust
Build #90250 2018-03-06T02:26:11.086536+00:00
# rustc version
rustc 1.26.0-dev (5c1d29af0 2018-03-03)# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading event v0.2.1
Fresh libc v0.2.39
Fresh slab v0.3.0
Fresh cfg-if v0.1.2
Fresh lazycell v0.6.0
Fresh iovec v0.1.2
Fresh net2 v0.2.32
Fresh log v0.4.1
Fresh log v0.3.9
Fresh mio v0.6.13
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 -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-7b5222ee8547b4c8.rlib --extern-version log=log,0.4.1 --extern mio=/home/cratesfyi/cratesfyi/debug/deps/libmio-784e7652e824a1c9.rlib --extern-version mio=mio,0.6.13`
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)
|                                         ^ expected pattern

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() })
|                                      ^ expected pattern

error[E0432]: unresolved import `std::time::duration`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/lib.rs:9:16
|
9 | use std::time::duration::Duration;
|                ^^^^^^^^ Could not find `duration` in `time`

error[E0432]: unresolved import `std::thunk`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:1:10
|
1 | use std::thunk::Invoke;
|          ^^^^^ Could not find `thunk` in `std`

error[E0432]: unresolved import `mio::util`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/ioloop.rs:3:10
|
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`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:2:10
|
2 | use std::thunk::Invoke;
|          ^^^^^ Could not find `thunk` in `std`

error[E0432]: unresolved import `std::time::duration`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/event-0.2.1/src/registration.rs:3:16
|
3 | use std::time::duration::Duration;
|                ^^^^^^^^ Could not find `duration` in `time`

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: 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 `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[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
|
1 | 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
|
1  | 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
|
1  | use mio::PollOpt;
|

error: aborting due to 29 previous errors

You've got a few errors: E0412, E0432
If you want more information on an error, try using "rustc --explain E0412"
thread 'main' panicked at 'Error(
CargoError(
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 -Z unstable-options --resource-suffix -20180303-1.26.0-dev-5c1d29af0 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-7b5222ee8547b4c8.rlib --extern-version log=log,0.4.1 --extern mio=/home/cratesfyi/cratesfyi/debug/deps/libmio-784e7652e824a1c9.rlib --extern-version mio=mio,0.6.13` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.