rocksdb-store 0.1.0

Some helpers for working with RocksDB databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("RocksDb error")]
    Db(#[from] rocksdb::Error),
    #[error("Invalid key bytes")]
    InvalidKey(Vec<u8>),
    #[error("Invalid value bytes")]
    InvalidValue(Vec<u8>),
    #[error("Mapper error")]
    Mapper(#[from] crate::mapper::Error),
}