boringdb 0.4.1

Robust, reasonably high-performance key-value database built on SQLite
Documentation
1
2
3
4
use crate::DbError;

/// Result type used throughout the codebase.
pub type BoringResult<T> = std::result::Result<T, DbError>;