pippin 0.1.0

A database for small objects sorted only via classification
Build #103873 2018-06-06T07:50:32.602483+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 byteorder v0.5.3
Fresh libc v0.2.42
Fresh vec_map v0.6.0
Fresh regex-syntax v0.3.9
Fresh gcc v0.3.54
Compiling hashindexed v0.1.1
Fresh cfg-if v0.1.3
Fresh utf8-ranges v0.1.3
Fresh time v0.1.40
Fresh rand v0.4.2
Fresh memchr v0.1.11
Fresh log v0.4.2
Fresh winapi v0.2.8
Fresh winapi-build v0.1.1
Running `rustc --crate-name hashindexed .cargo/registry/src/github.com-1ecc6299db9ec823/hashindexed-0.1.1/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 -C metadata=b4473ed137d8a6db -C extra-filename=-b4473ed137d8a6db --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --cap-lints allow`
Fresh log v0.3.9
Fresh aho-corasick v0.5.3
Fresh rand v0.3.22
Fresh rustc-serialize v0.3.24
Fresh rust-crypto v0.2.36
Fresh kernel32-sys v0.2.2
Fresh num-traits v0.2.4
Fresh thread-id v2.0.0
Fresh walkdir v0.1.8
Fresh num-integer v0.1.38
Fresh thread_local v0.2.7
Fresh regex v0.1.80
Fresh num-iter v0.1.37
Fresh num v0.1.42
Fresh chrono v0.2.25
Documenting pippin v0.1.0
Running `rustdoc --crate-name pippin .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern byteorder=/home/cratesfyi/cratesfyi/debug/deps/libbyteorder-fadd50430087d61b.rlib --extern-version byteorder=byteorder,0.5.3 --extern crypto=/home/cratesfyi/cratesfyi/debug/deps/libcrypto-21fa3687288afd3d.rlib --extern-version crypto=rust-crypto,0.2.36 --extern vec_map=/home/cratesfyi/cratesfyi/debug/deps/libvec_map-556619bd7e1a994d.rlib --extern-version vec_map=vec_map,0.6.0 --extern hashindexed=/home/cratesfyi/cratesfyi/debug/deps/libhashindexed-b4473ed137d8a6db.rlib --extern-version hashindexed=hashindexed,0.1.1 --extern regex=/home/cratesfyi/cratesfyi/debug/deps/libregex-dc7fbac3abb8388f.rlib --extern-version regex=regex,0.1.80 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-1e6cb20f8b19266a.rlib --extern-version log=log,0.3.9 --extern chrono=/home/cratesfyi/cratesfyi/debug/deps/libchrono-0168d8a6aeea40dc.rlib --extern-version chrono=chrono,0.2.25 --extern rand=/home/cratesfyi/cratesfyi/debug/deps/librand-f68ac84df3818730.rlib --extern-version rand=rand,0.3.22 --extern walkdir=/home/cratesfyi/cratesfyi/debug/deps/libwalkdir-60b58fe439525803.rlib --extern-version walkdir=walkdir,0.1.8`
error[E0195]: lifetime parameters or bounds on method `read_ss` do not match the trait declaration
--> .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/fileio.rs:161:5
|
161 |     fn read_ss<'a>(&self, ss_num: usize) -> Result<Option<Box<Read+'a>>> {
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
| 
::: .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/detail/part.rs:72:5
|
72  |     fn read_ss<'a>(&'a self, ss_num: usize) -> Result<Option<Box<Read+'a>>>;
|     ------------------------------------------------------------------------ lifetimes in impl do not match this method in trait

error[E0195]: lifetime parameters or bounds on method `read_ss_cl` do not match the trait declaration
--> .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/fileio.rs:176:5
|
176 |     fn read_ss_cl<'a>(&self, ss_num: usize, cl_num: usize) -> Result<Option<Box<Read+'a>>> {
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
| 
::: .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/detail/part.rs:81:5
|
81  |     fn read_ss_cl<'a>(&'a self, ss_num: usize, cl_num: usize) -> Result<Option<Box<Read+'a>>>;
|     ------------------------------------------------------------------------------------------ lifetimes in impl do not match this method in trait

error[E0195]: lifetime parameters or bounds on method `new_ss` do not match the trait declaration
--> .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/fileio.rs:186:5
|
186 |     fn new_ss<'a>(&mut self, ss_num: usize) -> Result<Option<Box<Write+'a>>> {
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
| 
::: .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/detail/part.rs:92:5
|
92  |     fn new_ss<'a>(&'a mut self, ss_num: usize) -> Result<Option<Box<Write+'a>>>;
|     ---------------------------------------------------------------------------- lifetimes in impl do not match this method in trait

error[E0195]: lifetime parameters or bounds on method `append_ss_cl` do not match the trait declaration
--> .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/fileio.rs:203:5
|
203 |     fn append_ss_cl<'a>(&mut self, ss_num: usize, cl_num: usize) -> Result<Option<Box<Write+'a>>> {
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
| 
::: .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/detail/part.rs:104:5
|
104 |     fn append_ss_cl<'a>(&'a mut self, ss_num: usize, cl_num: usize) -> Result<Option<Box<Write+'a>>>;
|     ------------------------------------------------------------------------------------------------- lifetimes in impl do not match this method in trait

error[E0195]: lifetime parameters or bounds on method `new_ss_cl` do not match the trait declaration
--> .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/fileio.rs:212:5
|
212 |     fn new_ss_cl<'a>(&mut self, ss_num: usize, cl_num: usize) -> Result<Option<Box<Write+'a>>> {
|     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetimes do not match method in trait
| 
::: .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/detail/part.rs:119:5
|
119 |     fn new_ss_cl<'a>(&'a mut self, ss_num: usize, cl_num: usize) -> Result<Option<Box<Write+'a>>>;
|     ---------------------------------------------------------------------------------------------- lifetimes in impl do not match this method in trait

error: Compilation failed, aborting rustdoc

thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `pippin`.,
cause: process didn't exit successfully: `rustdoc --crate-name pippin .cargo/registry/src/github.com-1ecc6299db9ec823/pippin-0.1.0/src/lib.rs -o /home/cratesfyi/cratesfyi/doc -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern byteorder=/home/cratesfyi/cratesfyi/debug/deps/libbyteorder-fadd50430087d61b.rlib --extern-version byteorder=byteorder,0.5.3 --extern crypto=/home/cratesfyi/cratesfyi/debug/deps/libcrypto-21fa3687288afd3d.rlib --extern-version crypto=rust-crypto,0.2.36 --extern vec_map=/home/cratesfyi/cratesfyi/debug/deps/libvec_map-556619bd7e1a994d.rlib --extern-version vec_map=vec_map,0.6.0 --extern hashindexed=/home/cratesfyi/cratesfyi/debug/deps/libhashindexed-b4473ed137d8a6db.rlib --extern-version hashindexed=hashindexed,0.1.1 --extern regex=/home/cratesfyi/cratesfyi/debug/deps/libregex-dc7fbac3abb8388f.rlib --extern-version regex=regex,0.1.80 --extern log=/home/cratesfyi/cratesfyi/debug/deps/liblog-1e6cb20f8b19266a.rlib --extern-version log=log,0.3.9 --extern chrono=/home/cratesfyi/cratesfyi/debug/deps/libchrono-0168d8a6aeea40dc.rlib --extern-version chrono=chrono,0.2.25 --extern rand=/home/cratesfyi/cratesfyi/debug/deps/librand-f68ac84df3818730.rlib --extern-version rand=rand,0.3.22 --extern walkdir=/home/cratesfyi/cratesfyi/debug/deps/libwalkdir-60b58fe439525803.rlib --extern-version walkdir=walkdir,0.1.8` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.