Crate soliddb

source ·
Expand description

This crate provides traits for storing serializable types in RocksDB.

Structs

Enums

  • The Error type for the soliddb crate.

Traits

  • The IndexValue trait has to be implemented for types that are used as either unique or indexed field.
  • Trait for storing a single instance of the given type in a rocksdb database instance. Can be derived.
  • Trait for storing a collection of instances instance of the given type in a rocksdb database instance. Can be derived.

Functions

  • Opens a new RocksDB Database at the given path.

Type Definitions

  • A type alias to DB instance type with the single-threaded column family creations/deletions
  • Result type for the soliddb crate.

Derive Macros