diff options
| author | metamuffin <metamuffin@disroot.org> | 2025-12-19 21:52:59 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2025-12-19 21:52:59 +0100 |
| commit | eac0de36221440571fe686074b04b71bf98cf727 (patch) | |
| tree | 76bad4c937e203bc13b6adcced9ed0b41432c2ae /database/src/indices/mod.rs | |
| parent | da985cc06e4caa7501222dbf54f212536fd42b0c (diff) | |
| download | jellything-eac0de36221440571fe686074b04b71bf98cf727.tar jellything-eac0de36221440571fe686074b04b71bf98cf727.tar.bz2 jellything-eac0de36221440571fe686074b04b71bf98cf727.tar.zst | |
things
Diffstat (limited to 'database/src/indices/mod.rs')
| -rw-r--r-- | database/src/indices/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/database/src/indices/mod.rs b/database/src/indices/mod.rs index 523235e..e291c91 100644 --- a/database/src/indices/mod.rs +++ b/database/src/indices/mod.rs @@ -8,6 +8,7 @@ use crate::{backends::WriteTransaction, table::RowNum}; use anyhow::Result; pub mod order; +pub mod key; pub trait Index<T> { fn add(&self, db: &mut dyn WriteTransaction, row: RowNum, val: &T) -> Result<()>; |