clippy: remove needless lifetimes

This commit is contained in:
Louis Dureuil 2023-01-31 10:14:43 +01:00
parent 771a367b97
commit 924d5d4c11
No known key found for this signature in database
3 changed files with 8 additions and 8 deletions

View File

@ -960,9 +960,9 @@ impl IndexScheduler {
///
/// ## Return
/// The list of processed tasks.
fn apply_index_operation<'txn, 'i>(
fn apply_index_operation<'i>(
&self,
index_wtxn: &'txn mut RwTxn<'i, '_>,
index_wtxn: &mut RwTxn<'i, '_>,
index: &'i Index,
operation: IndexOperation,
) -> Result<Vec<Task>> {

View File

@ -473,10 +473,10 @@ fn make_document(
Ok(document)
}
fn format_fields<'a, A: AsRef<[u8]>>(
fn format_fields<A: AsRef<[u8]>>(
document: &Document,
field_ids_map: &FieldsIdsMap,
builder: &MatcherBuilder<'a, A>,
builder: &MatcherBuilder<'_, A>,
formatted_options: &BTreeMap<FieldId, FormatOptions>,
compute_matches: bool,
displayable_ids: &BTreeSet<FieldId>,
@ -521,9 +521,9 @@ fn format_fields<'a, A: AsRef<[u8]>>(
Ok((matches_position, document))
}
fn format_value<'a, A: AsRef<[u8]>>(
fn format_value<A: AsRef<[u8]>>(
value: Value,
builder: &MatcherBuilder<'a, A>,
builder: &MatcherBuilder<'_, A>,
format_options: Option<FormatOptions>,
infos: &mut Vec<MatchBounds>,
compute_matches: bool,

View File

@ -72,9 +72,9 @@ pub fn map_leaf_values<'a>(
map_leaf_values_in_object(value, &selectors, "", &mut mapper);
}
pub fn map_leaf_values_in_object<'a>(
pub fn map_leaf_values_in_object(
value: &mut Map<String, Value>,
selectors: &[&'a str],
selectors: &[&str],
base_key: &str,
mapper: &mut impl FnMut(&str, &mut Value),
) {