value_log/
value.rs

1// Copyright (c) 2024-present, fjall-rs
2// This source code is licensed under both the Apache 2.0 and MIT License
3// (found in the LICENSE-* files in the repository)
4
5use crate::Slice;
6
7/// User defined key
8pub type UserKey = Slice;
9
10/// User defined data (blob of bytes)
11#[allow(clippy::module_name_repetitions)]
12pub type UserValue = Slice;