Make cargo fmt happy

This commit is contained in:
Clément Renault
2025-04-01 11:27:41 +02:00
parent 64477aac60
commit a0bfcf8872
13 changed files with 29 additions and 38 deletions

View File

@@ -149,13 +149,11 @@ pub struct IndexingContext<
pub grenad_parameters: &'indexer GrenadParameters,
}
impl<
MSP,
> Copy
impl<MSP> Copy
for IndexingContext<
'_, // invariant lifetime of fields ids map
'_, // invariant lifetime of fields ids map
'_, // covariant lifetime of objects that are borrowed during the entire indexing operation
'_, // covariant lifetime of the index
'_, // covariant lifetime of the index
MSP,
>
where
@@ -163,13 +161,11 @@ where
{
}
impl<
MSP,
> Clone
impl<MSP> Clone
for IndexingContext<
'_, // invariant lifetime of fields ids map
'_, // invariant lifetime of fields ids map
'_, // covariant lifetime of objects that are borrowed during the entire indexing operation
'_, // covariant lifetime of the index
'_, // covariant lifetime of the index
MSP,
>
where