Make clippy happy

This commit is contained in:
Clément Renault
2024-11-27 14:59:04 +01:00
parent cc63802115
commit a514ce472a
2 changed files with 4 additions and 11 deletions

View File

@ -382,19 +382,19 @@ impl<'b> ExtractorBbqueueSender<'b> {
}
pub fn field_id_docid_facet_sender<'a>(&'a self) -> FieldIdDocidFacetSender<'a, 'b> {
FieldIdDocidFacetSender(&self)
FieldIdDocidFacetSender(self)
}
pub fn documents<'a>(&'a self) -> DocumentsSender<'a, 'b> {
DocumentsSender(&self)
DocumentsSender(self)
}
pub fn embeddings<'a>(&'a self) -> EmbeddingSender<'a, 'b> {
EmbeddingSender(&self)
EmbeddingSender(self)
}
pub fn geo<'a>(&'a self) -> GeoSender<'a, 'b> {
GeoSender(&self)
GeoSender(self)
}
fn delete_vector(&self, docid: DocumentId) -> crate::Result<()> {