view src/lib.rs @ 44:d4e19a78a471

Implement InternalFilterPolicy
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 16 Jun 2016 20:57:15 +0200
parents 05a99b5b895c
children 07e25b49785a
line wrap: on
line source


#![allow(dead_code)]

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

mod block;
mod blockhandle;
mod filter;
mod log;
mod memtable;
mod skipmap;
mod snapshot;
mod types;

pub use types::Comparator;

#[cfg(test)]
mod tests {}