wedb_embed 0.1.7

Embedded database engine providing Redis-like APIs, built on fjall / 嵌入式数据库引擎,提供类似 Redis 的接口,底层基于 fjall 开发
Documentation
1
2
3
4
5
6
7
8
/// LPOS command options enumeration.
/// LPOS 选项枚举
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum LPos {
  Rank(i64),
  Count(usize),
  MaxLen(usize),
}