view src/lib.rs @ 89:89810ac42bd1

Add &self argument to comparator trait This is necessary for comparators that wrap other comparators
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 02 Sep 2016 22:10:51 +0200
parents edf1f72cd0ca
children db84cb244062
line wrap: on
line source

#![allow(dead_code)]

extern crate crc;
extern crate integer_encoding;
extern crate libc;
extern crate rand;

mod block;
mod blockhandle;
mod block_cache;
mod disk_env;
mod env;
mod filter;
mod filter_block;
mod log;
mod memtable;
mod merging_iter;
mod options;
mod skipmap;
mod snapshot;
mod table_builder;
mod table_reader;
mod types;
mod write_batch;

mod test_util;

pub use types::Comparator;

#[cfg(test)]
mod tests {}