memorable/bounded/dynamic/entry.rs
1use crate::bounded::generic::{
2 BulkDeletionEntry as GenericBulkDeletionEntry, BulkUpdateEntry as GenericBulkUpdateEntry,
3 Entry as GenericEntry,
4};
5
6use super::Key;
7
8/// An entry in the [`Memtable`](super::Memtable).
9pub type Entry<'a, C> = GenericEntry<'a, Key<C>, [u8]>;
10
11/// A bulk deletion entry in the [`Memtable`](super::Memtable).
12pub type BulkDeletionEntry<'a, C> = GenericBulkDeletionEntry<'a, Key<C>, [u8]>;
13
14/// A bulk update entry in the [`Memtable`](super::Memtable).
15pub type BulkUpdateEntry<'a, C> = GenericBulkUpdateEntry<'a, Key<C>, [u8]>;