novakv 1.0.1

An embedded, ordered key-value store for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Lightweight `(ptr, len)` borrowed-bytes view.
//!
//! In C-style APIs this is a `(const char*, size_t)` pair. In Rust
//! the natural equivalent is `&[u8]`, and most public APIs take
//! `&[u8]` (or `impl AsRef<[u8]>`) directly.
//!
//! [`Slice`] is provided for embedders writing translation layers
//! between C-style APIs and this crate, where you want a
//! structurally compatible struct rather than `&[u8]`.

mod slice;
pub use slice::*;