diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-26 03:02:24 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-26 03:02:24 +0100 |
| commit | eb6648770e7de66ccafe44d114ecbb2c1eaf444d (patch) | |
| tree | 2bce9f579b3ea7313f84df94b27fad813c66e9e1 /database/src/lib.rs | |
| parent | 7f7deec27e69ed110c52caddaa3a0c04430e71d9 (diff) | |
| download | jellything-eb6648770e7de66ccafe44d114ecbb2c1eaf444d.tar jellything-eb6648770e7de66ccafe44d114ecbb2c1eaf444d.tar.bz2 jellything-eb6648770e7de66ccafe44d114ecbb2c1eaf444d.tar.zst | |
implement application-side continuation tokens
Diffstat (limited to 'database/src/lib.rs')
| -rw-r--r-- | database/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/database/src/lib.rs b/database/src/lib.rs index 1f491de..13e4a0d 100644 --- a/database/src/lib.rs +++ b/database/src/lib.rs @@ -35,6 +35,7 @@ pub trait Transaction { #[derive(Debug, Default, Clone, PartialEq)] pub struct Query<'a> { + pub continuation: Option<Vec<u8>>, pub filter: Filter<'a>, pub sort: Sort, } |