view src/lib.rs @ 93:db84cb244062

Implement "strongly" typed keys. LevelDB uses different key formats in different modules; by introducing typedefs, we achieve at least better documentation about which key types are used where.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 11 Sep 2016 10:37:19 +0200
parents edf1f72cd0ca
children cced335dd54d
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 key_types;
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 {}