vec: rework part 3

This commit is contained in:
nym21
2025-04-10 01:11:52 +02:00
parent 41cf0225e3
commit 0dd7e9359e
12 changed files with 84 additions and 42 deletions

View File

@@ -5,7 +5,6 @@ use std::{
};
use arc_swap::{ArcSwap, Guard};
use axum::Json;
use memmap2::Mmap;
use rayon::prelude::*;
use zstd::DEFAULT_COMPRESSION_LEVEL;
@@ -232,7 +231,7 @@ where
todo!()
}
fn collect_range(&self, from: Option<i64>, to: Option<i64>) -> Result<Json<Vec<T>>> {
fn collect_range(&self, from: Option<i64>, to: Option<i64>) -> Result<Vec<Self::T>> {
todo!()
}