Move the RefCellExt trait in a dedicated module

This commit is contained in:
Clément Renault
2024-11-07 11:36:09 +01:00
parent 1477b81d38
commit 0e4e9e866a
10 changed files with 67 additions and 61 deletions

View File

@ -6,9 +6,8 @@ use hashbrown::HashMap;
use super::DelAddRoaringBitmap;
use crate::update::new::channel::DocumentsSender;
use crate::update::new::document::{write_to_obkv, Document as _};
use crate::update::new::indexer::document_changes::{
DocumentChangeContext, Extractor, FullySend, RefCellExt as _,
};
use crate::update::new::indexer::document_changes::{DocumentChangeContext, Extractor, FullySend};
use crate::update::new::ref_cell_ext::RefCellExt as _;
use crate::update::new::DocumentChange;
use crate::vector::EmbeddingConfigs;
use crate::Result;