mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Fixing piles of clippy errors.
Most of these are calling clone when the struct supports Copy. Many are using & and &mut on `self` when the function they are called from already has an immutable or mutable borrow so this isn't needed. I tried to stay away from actual changes or places where I'd have to name fresh variables.
This commit is contained in:
parent
95e45e1c2c
commit
beb987d3d1
18 changed files with 137 additions and 157 deletions
|
@ -195,7 +195,7 @@ pub fn lat_lng_to_xyz(coord: &[f64; 2]) -> [f64; 3] {
|
|||
/// Returns `true` if the field match one of the faceted fields.
|
||||
/// See the function [`is_faceted_by`] below to see what “matching” means.
|
||||
pub fn is_faceted(field: &str, faceted_fields: impl IntoIterator<Item = impl AsRef<str>>) -> bool {
|
||||
faceted_fields.into_iter().find(|facet| is_faceted_by(field, facet.as_ref())).is_some()
|
||||
faceted_fields.into_iter().any(|facet| is_faceted_by(field, facet.as_ref()))
|
||||
}
|
||||
|
||||
/// Returns `true` if the field match the facet.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue