Update changelog #437
Annotations
141 warnings
this `map_or` can be simplified:
yaml_test_runner/src/skip.rs#L29
warning: this `map_or` can be simplified
--> yaml_test_runner/src/skip.rs:29:9
|
29 | / self.tests
30 | | .get(path)
31 | | .map_or(false, |tests| tests.contains("*") || tests.contains(name))
| |_______________________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `#[warn(clippy::unnecessary_map_or)]` on by default
help: use is_some_and instead
|
29 ~ self.tests
30 + .get(path).is_some_and(|tests| tests.contains("*") || tests.contains(name))
|
|
the borrowed expression implements the required traits:
yaml_test_runner/src/generator.rs#L413
warning: the borrowed expression implements the required traits
--> yaml_test_runner/src/generator.rs:413:47
|
413 | let yaml = fs::read_to_string(&entry.path()).unwrap();
| ^^^^^^^^^^^^^ help: change this to: `entry.path()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9250
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9250:37
|
9250 | pub fn scripts_painless_execute<'a, 'b>(&'a self) -> ScriptsPainlessExecute<'a, 'b, ()> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9250 - pub fn scripts_painless_execute<'a, 'b>(&'a self) -> ScriptsPainlessExecute<'a, 'b, ()> {
9250 + pub fn scripts_painless_execute<'b>(&self) -> ScriptsPainlessExecute<'_, 'b, ()> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9230
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9230:20
|
9230 | pub fn reindex<'a, 'b>(&'a self) -> Reindex<'a, 'b, ()> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9230 - pub fn reindex<'a, 'b>(&'a self) -> Reindex<'a, 'b, ()> {
9230 + pub fn reindex<'b>(&self) -> Reindex<'_, 'b, ()> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9216
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9216:17
|
9216 | pub fn ping<'a, 'b>(&'a self) -> Ping<'a, 'b> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9216 - pub fn ping<'a, 'b>(&'a self) -> Ping<'a, 'b> {
9216 + pub fn ping<'b>(&self) -> Ping<'_, 'b> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9190
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9190:17
|
9190 | pub fn info<'a, 'b>(&'a self) -> Info<'a, 'b> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9190 - pub fn info<'a, 'b>(&'a self) -> Info<'a, 'b> {
9190 + pub fn info<'b>(&self) -> Info<'_, 'b> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9178
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9178:33
|
9178 | pub fn get_script_languages<'a, 'b>(&'a self) -> GetScriptLanguages<'a, 'b> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9178 - pub fn get_script_languages<'a, 'b>(&'a self) -> GetScriptLanguages<'a, 'b> {
9178 + pub fn get_script_languages<'b>(&self) -> GetScriptLanguages<'_, 'b> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9172
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9172:31
|
9172 | pub fn get_script_context<'a, 'b>(&'a self) -> GetScriptContext<'a, 'b> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9172 - pub fn get_script_context<'a, 'b>(&'a self) -> GetScriptContext<'a, 'b> {
9172 + pub fn get_script_context<'b>(&self) -> GetScriptContext<'_, 'b> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9162
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9162:25
|
9162 | pub fn get_all_pits<'a, 'b>(&'a self) -> GetAllPits<'a, 'b> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9162 - pub fn get_all_pits<'a, 'b>(&'a self) -> GetAllPits<'a, 'b> {
9162 + pub fn get_all_pits<'b>(&self) -> GetAllPits<'_, 'b> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9134
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9134:23
|
9134 | pub fn delete_pit<'a, 'b>(&'a self) -> DeletePit<'a, 'b, ()> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9134 - pub fn delete_pit<'a, 'b>(&'a self) -> DeletePit<'a, 'b, ()> {
9134 + pub fn delete_pit<'b>(&self) -> DeletePit<'_, 'b, ()> {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/root/mod.rs#L9116
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/root/mod.rs:9116:28
|
9116 | pub fn delete_all_pits<'a, 'b>(&'a self) -> DeleteAllPits<'a, 'b> {
| ^^ ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
9116 - pub fn delete_all_pits<'a, 'b>(&'a self) -> DeleteAllPits<'a, 'b> {
9116 + pub fn delete_all_pits<'b>(&self) -> DeleteAllPits<'_, 'b> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L8943
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:8943:6
|
8943 | impl<'b> UpdateByQueryRethrottleParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
8943 - impl<'b> UpdateByQueryRethrottleParts<'b> {
8943 + impl UpdateByQueryRethrottleParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L8442
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:8442:6
|
8442 | impl<'b> UpdateByQueryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
8442 - impl<'b> UpdateByQueryParts<'b> {
8442 + impl UpdateByQueryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L8174
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:8174:6
|
8174 | impl<'b> UpdateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
8174 - impl<'b> UpdateParts<'b> {
8174 + impl UpdateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L7906
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:7906:6
|
7906 | impl<'b> TermvectorsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7906 - impl<'b> TermvectorsParts<'b> {
7906 + impl TermvectorsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L7624
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:7624:6
|
7624 | impl<'b> SearchTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7624 - impl<'b> SearchTemplateParts<'b> {
7624 + impl SearchTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L7413
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:7413:6
|
7413 | impl<'b> SearchShardsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7413 - impl<'b> SearchShardsParts<'b> {
7413 + impl SearchShardsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L6824
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:6824:6
|
6824 | impl<'b> SearchParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6824 - impl<'b> SearchParts<'b> {
6824 + impl SearchParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L6646
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:6646:6
|
6646 | impl<'b> ScrollParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6646 - impl<'b> ScrollParts<'b> {
6646 + impl ScrollParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L6356
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:6356:6
|
6356 | impl<'b> RenderSearchTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6356 - impl<'b> RenderSearchTemplateParts<'b> {
6356 + impl RenderSearchTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L6201
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:6201:6
|
6201 | impl<'b> ReindexRethrottleParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6201 - impl<'b> ReindexRethrottleParts<'b> {
6201 + impl ReindexRethrottleParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L5794
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:5794:6
|
5794 | impl<'b> RankEvalParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5794 - impl<'b> RankEvalParts<'b> {
5794 + impl RankEvalParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L5596
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:5596:6
|
5596 | impl<'b> PutScriptParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5596 - impl<'b> PutScriptParts<'b> {
5596 + impl PutScriptParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L5213
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:5213:6
|
5213 | impl<'b> MtermvectorsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5213 - impl<'b> MtermvectorsParts<'b> {
5213 + impl MtermvectorsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L5013
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:5013:6
|
5013 | impl<'b> MsearchTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5013 - impl<'b> MsearchTemplateParts<'b> {
5013 + impl MsearchTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L4793
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:4793:6
|
4793 | impl<'b> MsearchParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4793 - impl<'b> MsearchParts<'b> {
4793 + impl MsearchParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L4560
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:4560:6
|
4560 | impl<'b> MgetParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4560 - impl<'b> MgetParts<'b> {
4560 + impl MgetParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L4182
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:4182:6
|
4182 | impl<'b> IndexParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4182 - impl<'b> IndexParts<'b> {
4182 + impl IndexParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L3974
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:3974:6
|
3974 | impl<'b> GetSourceParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3974 - impl<'b> GetSourceParts<'b> {
3974 + impl GetSourceParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L3603
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:3603:6
|
3603 | impl<'b> GetScriptParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3603 - impl<'b> GetScriptParts<'b> {
3603 + impl GetScriptParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L3275
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:3275:6
|
3275 | impl<'b> GetParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3275 - impl<'b> GetParts<'b> {
3275 + impl GetParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L3075
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:3075:6
|
3075 | impl<'b> FieldCapsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3075 - impl<'b> FieldCapsParts<'b> {
3075 + impl FieldCapsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L2801
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:2801:6
|
2801 | impl<'b> ExplainParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2801 - impl<'b> ExplainParts<'b> {
2801 + impl ExplainParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L2595
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:2595:6
|
2595 | impl<'b> ExistsSourceParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2595 - impl<'b> ExistsSourceParts<'b> {
2595 + impl ExistsSourceParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L2379
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:2379:6
|
2379 | impl<'b> ExistsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2379 - impl<'b> ExistsParts<'b> {
2379 + impl ExistsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L2233
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:2233:6
|
2233 | impl<'b> DeleteScriptParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2233 - impl<'b> DeleteScriptParts<'b> {
2233 + impl DeleteScriptParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L1945
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:1945:6
|
1945 | impl<'b> DeleteByQueryRethrottleParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1945 - impl<'b> DeleteByQueryRethrottleParts<'b> {
1945 + impl DeleteByQueryRethrottleParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L1464
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:1464:6
|
1464 | impl<'b> DeleteByQueryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1464 - impl<'b> DeleteByQueryParts<'b> {
1464 + impl DeleteByQueryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L1158
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:1158:6
|
1158 | impl<'b> DeleteParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1158 - impl<'b> DeleteParts<'b> {
1158 + impl DeleteParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L952
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:952:6
|
952 | impl<'b> CreatePitParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
952 - impl<'b> CreatePitParts<'b> {
952 + impl CreatePitParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L737
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:737:6
|
737 | impl<'b> CreateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
737 - impl<'b> CreateParts<'b> {
737 + impl CreateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L447
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:447:6
|
447 | impl<'b> CountParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
447 - impl<'b> CountParts<'b> {
447 + impl CountParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L301
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:301:6
|
301 | impl<'b> ClearScrollParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
301 - impl<'b> ClearScrollParts<'b> {
301 + impl ClearScrollParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/root/mod.rs#L51
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/root/mod.rs:51:6
|
51 | impl<'b> BulkParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
51 - impl<'b> BulkParts<'b> {
51 + impl BulkParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/tasks.rs#L250
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/tasks.rs:250:6
|
250 | impl<'b> TasksGetParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
250 - impl<'b> TasksGetParts<'b> {
250 + impl TasksGetParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/tasks.rs#L59
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/tasks.rs:59:6
|
59 | impl<'b> TasksCancelParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
59 - impl<'b> TasksCancelParts<'b> {
59 + impl TasksCancelParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L1855
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:1855:6
|
1855 | impl<'b> SnapshotVerifyRepositoryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1855 - impl<'b> SnapshotVerifyRepositoryParts<'b> {
1855 + impl SnapshotVerifyRepositoryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L1690
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:1690:6
|
1690 | impl<'b> SnapshotStatusParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1690 - impl<'b> SnapshotStatusParts<'b> {
1690 + impl SnapshotStatusParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L1506
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:1506:6
|
1506 | impl<'b> SnapshotRestoreParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1506 - impl<'b> SnapshotRestoreParts<'b> {
1506 + impl SnapshotRestoreParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L1357
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:1357:6
|
1357 | impl<'b> SnapshotGetRepositoryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1357 - impl<'b> SnapshotGetRepositoryParts<'b> {
1357 + impl SnapshotGetRepositoryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L1061
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:1061:6
|
1061 | impl<'b> SnapshotGetParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1061 - impl<'b> SnapshotGetParts<'b> {
1061 + impl SnapshotGetParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L913
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:913:6
|
913 | impl<'b> SnapshotDeleteRepositoryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
913 - impl<'b> SnapshotDeleteRepositoryParts<'b> {
913 + impl SnapshotDeleteRepositoryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L769
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:769:6
|
769 | impl<'b> SnapshotDeleteParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
769 - impl<'b> SnapshotDeleteParts<'b> {
769 + impl SnapshotDeleteParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L586
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:586:6
|
586 | impl<'b> SnapshotCreateRepositoryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
586 - impl<'b> SnapshotCreateRepositoryParts<'b> {
586 + impl SnapshotCreateRepositoryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L407
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:407:6
|
407 | impl<'b> SnapshotCreateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
407 - impl<'b> SnapshotCreateParts<'b> {
407 + impl SnapshotCreateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L227
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:227:6
|
227 | impl<'b> SnapshotCloneParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
227 - impl<'b> SnapshotCloneParts<'b> {
227 + impl SnapshotCloneParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/snapshot.rs#L53
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/snapshot.rs:53:6
|
53 | impl<'b> SnapshotCleanupRepositoryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
53 - impl<'b> SnapshotCleanupRepositoryParts<'b> {
53 + impl SnapshotCleanupRepositoryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/nodes.rs#L837
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/nodes.rs:837:6
|
837 | impl<'b> NodesUsageParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
837 - impl<'b> NodesUsageParts<'b> {
837 + impl NodesUsageParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/nodes.rs#L569
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/nodes.rs:569:6
|
569 | impl<'b> NodesStatsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
569 - impl<'b> NodesStatsParts<'b> {
569 + impl NodesStatsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/nodes.rs#L404
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/nodes.rs:404:6
|
404 | impl<'b> NodesReloadSecureSettingsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
404 - impl<'b> NodesReloadSecureSettingsParts<'b> {
404 + impl NodesReloadSecureSettingsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/nodes.rs#L239
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/nodes.rs:239:6
|
239 | impl<'b> NodesInfoParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
239 - impl<'b> NodesInfoParts<'b> {
239 + impl NodesInfoParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/nodes.rs#L56
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/nodes.rs:56:6
|
56 | impl<'b> NodesHotThreadsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
56 - impl<'b> NodesHotThreadsParts<'b> {
56 + impl NodesHotThreadsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/ingest.rs#L637
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/ingest.rs:637:6
|
637 | impl<'b> IngestSimulateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
637 - impl<'b> IngestSimulateParts<'b> {
637 + impl IngestSimulateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/ingest.rs#L463
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/ingest.rs:463:6
|
463 | impl<'b> IngestPutPipelineParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
463 - impl<'b> IngestPutPipelineParts<'b> {
463 + impl IngestPutPipelineParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/ingest.rs#L213
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/ingest.rs:213:6
|
213 | impl<'b> IngestGetPipelineParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
213 - impl<'b> IngestGetPipelineParts<'b> {
213 + impl IngestGetPipelineParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/ingest.rs#L65
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/ingest.rs:65:6
|
65 | impl<'b> IngestDeletePipelineParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
65 - impl<'b> IngestDeletePipelineParts<'b> {
65 + impl IngestDeletePipelineParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L8761
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:8761:6
|
8761 | impl<'b> IndicesValidateQueryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
8761 - impl<'b> IndicesValidateQueryParts<'b> {
8761 + impl IndicesValidateQueryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L8560
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:8560:6
|
8560 | impl<'b> IndicesUpgradeParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
8560 - impl<'b> IndicesUpgradeParts<'b> {
8560 + impl IndicesUpgradeParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L8175
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:8175:6
|
8175 | impl<'b> IndicesUnfreezeParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
8175 - impl<'b> IndicesUnfreezeParts<'b> {
8175 + impl IndicesUnfreezeParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L7933
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:7933:6
|
7933 | impl<'b> IndicesStatsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7933 - impl<'b> IndicesStatsParts<'b> {
7933 + impl IndicesStatsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L7729
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:7729:6
|
7729 | impl<'b> IndicesSplitParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7729 - impl<'b> IndicesSplitParts<'b> {
7729 + impl IndicesSplitParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L7546
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:7546:6
|
7546 | impl<'b> IndicesSimulateTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7546 - impl<'b> IndicesSimulateTemplateParts<'b> {
7546 + impl IndicesSimulateTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L7362
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:7362:6
|
7362 | impl<'b> IndicesSimulateIndexTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7362 - impl<'b> IndicesSimulateIndexTemplateParts<'b> {
7362 + impl IndicesSimulateIndexTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L7164
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:7164:6
|
7164 | impl<'b> IndicesShrinkParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7164 - impl<'b> IndicesShrinkParts<'b> {
7164 + impl IndicesShrinkParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L7004
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:7004:6
|
7004 | impl<'b> IndicesShardStoresParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
7004 - impl<'b> IndicesShardStoresParts<'b> {
7004 + impl IndicesShardStoresParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L6843
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:6843:6
|
6843 | impl<'b> IndicesSegmentsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6843 - impl<'b> IndicesSegmentsParts<'b> {
6843 + impl IndicesSegmentsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L6634
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:6634:6
|
6634 | impl<'b> IndicesRolloverParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6634 - impl<'b> IndicesRolloverParts<'b> {
6634 + impl IndicesRolloverParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L6499
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:6499:6
|
6499 | impl<'b> IndicesResolveIndexParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6499 - impl<'b> IndicesResolveIndexParts<'b> {
6499 + impl IndicesResolveIndexParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L6319
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:6319:6
|
6319 | impl<'b> IndicesReloadSearchAnalyzersParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6319 - impl<'b> IndicesReloadSearchAnalyzersParts<'b> {
6319 + impl IndicesReloadSearchAnalyzersParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L6140
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:6140:6
|
6140 | impl<'b> IndicesRefreshParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
6140 - impl<'b> IndicesRefreshParts<'b> {
6140 + impl IndicesRefreshParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L5998
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:5998:6
|
5998 | impl<'b> IndicesRecoveryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5998 - impl<'b> IndicesRecoveryParts<'b> {
5998 + impl IndicesRecoveryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L5814
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:5814:6
|
5814 | impl<'b> IndicesPutTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5814 - impl<'b> IndicesPutTemplateParts<'b> {
5814 + impl IndicesPutTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L5587
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:5587:6
|
5587 | impl<'b> IndicesPutSettingsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5587 - impl<'b> IndicesPutSettingsParts<'b> {
5587 + impl IndicesPutSettingsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L5369
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:5369:6
|
5369 | impl<'b> IndicesPutMappingParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5369 - impl<'b> IndicesPutMappingParts<'b> {
5369 + impl IndicesPutMappingParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L5187
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:5187:6
|
5187 | impl<'b> IndicesPutIndexTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5187 - impl<'b> IndicesPutIndexTemplateParts<'b> {
5187 + impl IndicesPutIndexTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L5009
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:5009:6
|
5009 | impl<'b> IndicesPutAliasParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
5009 - impl<'b> IndicesPutAliasParts<'b> {
5009 + impl IndicesPutAliasParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L4868
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:4868:6
|
4868 | impl<'b> IndicesPromoteDataStreamParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4868 - impl<'b> IndicesPromoteDataStreamParts<'b> {
4868 + impl IndicesPromoteDataStreamParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L4652
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:4652:6
|
4652 | impl<'b> IndicesOpenParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4652 - impl<'b> IndicesOpenParts<'b> {
4652 + impl IndicesOpenParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L4511
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:4511:6
|
4511 | impl<'b> IndicesMigrateToDataStreamParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4511 - impl<'b> IndicesMigrateToDataStreamParts<'b> {
4511 + impl IndicesMigrateToDataStreamParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L4358
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:4358:6
|
4358 | impl<'b> IndicesGetUpgradeParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4358 - impl<'b> IndicesGetUpgradeParts<'b> {
4358 + impl IndicesGetUpgradeParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L4196
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:4196:6
|
4196 | impl<'b> IndicesGetTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4196 - impl<'b> IndicesGetTemplateParts<'b> {
4196 + impl IndicesGetTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L3974
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:3974:6
|
3974 | impl<'b> IndicesGetSettingsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3974 - impl<'b> IndicesGetSettingsParts<'b> {
3974 + impl IndicesGetSettingsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L3789
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:3789:6
|
3789 | impl<'b> IndicesGetMappingParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3789 - impl<'b> IndicesGetMappingParts<'b> {
3789 + impl IndicesGetMappingParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L3629
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:3629:6
|
3629 | impl<'b> IndicesGetIndexTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3629 - impl<'b> IndicesGetIndexTemplateParts<'b> {
3629 + impl IndicesGetIndexTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L3446
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:3446:6
|
3446 | impl<'b> IndicesGetFieldMappingParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3446 - impl<'b> IndicesGetFieldMappingParts<'b> {
3446 + impl IndicesGetFieldMappingParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L3261
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:3261:6
|
3261 | impl<'b> IndicesGetAliasParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3261 - impl<'b> IndicesGetAliasParts<'b> {
3261 + impl IndicesGetAliasParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L3061
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:3061:6
|
3061 | impl<'b> IndicesGetParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3061 - impl<'b> IndicesGetParts<'b> {
3061 + impl IndicesGetParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L2855
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:2855:6
|
2855 | impl<'b> IndicesForcemergeParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2855 - impl<'b> IndicesForcemergeParts<'b> {
2855 + impl IndicesForcemergeParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L2654
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:2654:6
|
2654 | impl<'b> IndicesFlushParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2654 - impl<'b> IndicesFlushParts<'b> {
2654 + impl IndicesFlushParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L2495
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:2495:6
|
2495 | impl<'b> IndicesExistsTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2495 - impl<'b> IndicesExistsTemplateParts<'b> {
2495 + impl IndicesExistsTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L2340
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:2340:6
|
2340 | impl<'b> IndicesExistsIndexTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2340 - impl<'b> IndicesExistsIndexTemplateParts<'b> {
2340 + impl IndicesExistsIndexTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L2168
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:2168:6
|
2168 | impl<'b> IndicesExistsAliasParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2168 - impl<'b> IndicesExistsAliasParts<'b> {
2168 + impl IndicesExistsAliasParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1991
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1991:6
|
1991 | impl<'b> IndicesExistsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1991 - impl<'b> IndicesExistsParts<'b> {
1991 + impl IndicesExistsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1845
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1845:6
|
1845 | impl<'b> IndicesDeleteTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1845 - impl<'b> IndicesDeleteTemplateParts<'b> {
1845 + impl IndicesDeleteTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1699
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1699:6
|
1699 | impl<'b> IndicesDeleteIndexTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1699 - impl<'b> IndicesDeleteIndexTemplateParts<'b> {
1699 + impl IndicesDeleteIndexTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1569
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1569:6
|
1569 | impl<'b> IndicesDeleteDataStreamParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1569 - impl<'b> IndicesDeleteDataStreamParts<'b> {
1569 + impl IndicesDeleteDataStreamParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1415
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1415:6
|
1415 | impl<'b> IndicesDeleteAliasParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1415 - impl<'b> IndicesDeleteAliasParts<'b> {
1415 + impl IndicesDeleteAliasParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1239
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1239:6
|
1239 | impl<'b> IndicesDeleteParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1239 - impl<'b> IndicesDeleteParts<'b> {
1239 + impl IndicesDeleteParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L1056
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:1056:6
|
1056 | impl<'b> IndicesCreateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1056 - impl<'b> IndicesCreateParts<'b> {
1056 + impl IndicesCreateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L840
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:840:6
|
840 | impl<'b> IndicesCloseParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
840 - impl<'b> IndicesCloseParts<'b> {
840 + impl IndicesCloseParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L652
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:652:6
|
652 | impl<'b> IndicesCloneParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
652 - impl<'b> IndicesCloneParts<'b> {
652 + impl IndicesCloneParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L424
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:424:6
|
424 | impl<'b> IndicesClearCacheParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
424 - impl<'b> IndicesClearCacheParts<'b> {
424 + impl IndicesClearCacheParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L265
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:265:6
|
265 | impl<'b> IndicesAnalyzeParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
265 - impl<'b> IndicesAnalyzeParts<'b> {
265 + impl IndicesAnalyzeParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/indices.rs#L53
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/indices.rs:53:6
|
53 | impl<'b> IndicesAddBlockParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
53 - impl<'b> IndicesAddBlockParts<'b> {
53 + impl IndicesAddBlockParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/dangling_indices.rs#L217
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/dangling_indices.rs:217:6
|
217 | impl<'b> DanglingIndicesImportDanglingIndexParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
217 - impl<'b> DanglingIndicesImportDanglingIndexParts<'b> {
217 + impl DanglingIndicesImportDanglingIndexParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/dangling_indices.rs#L58
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/dangling_indices.rs:58:6
|
58 | impl<'b> DanglingIndicesDeleteDanglingIndexParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
58 - impl<'b> DanglingIndicesDeleteDanglingIndexParts<'b> {
58 + impl DanglingIndicesDeleteDanglingIndexParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L2381
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:2381:6
|
2381 | impl<'b> ClusterStatsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2381 - impl<'b> ClusterStatsParts<'b> {
2381 + impl ClusterStatsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L2160
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:2160:6
|
2160 | impl<'b> ClusterStateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2160 - impl<'b> ClusterStateParts<'b> {
2160 + impl ClusterStateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L1479
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:1479:6
|
1479 | impl<'b> ClusterPutComponentTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1479 - impl<'b> ClusterPutComponentTemplateParts<'b> {
1479 + impl ClusterPutComponentTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L938
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:938:6
|
938 | impl<'b> ClusterHealthParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
938 - impl<'b> ClusterHealthParts<'b> {
938 + impl ClusterHealthParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L629
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:629:6
|
629 | impl<'b> ClusterGetComponentTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
629 - impl<'b> ClusterGetComponentTemplateParts<'b> {
629 + impl ClusterGetComponentTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L481
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:481:6
|
481 | impl<'b> ClusterExistsComponentTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
481 - impl<'b> ClusterExistsComponentTemplateParts<'b> {
481 + impl ClusterExistsComponentTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cluster.rs#L212
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cluster.rs:212:6
|
212 | impl<'b> ClusterDeleteComponentTemplateParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
212 - impl<'b> ClusterDeleteComponentTemplateParts<'b> {
212 + impl ClusterDeleteComponentTemplateParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L4092
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:4092:6
|
4092 | impl<'b> CatThreadPoolParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
4092 - impl<'b> CatThreadPoolParts<'b> {
4092 + impl CatThreadPoolParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L3894
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:3894:6
|
3894 | impl<'b> CatTemplatesParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3894 - impl<'b> CatTemplatesParts<'b> {
3894 + impl CatTemplatesParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L3477
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:3477:6
|
3477 | impl<'b> CatSnapshotsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3477 - impl<'b> CatSnapshotsParts<'b> {
3477 + impl CatSnapshotsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L3259
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:3259:6
|
3259 | impl<'b> CatShardsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3259 - impl<'b> CatShardsParts<'b> {
3259 + impl CatShardsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L3059
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:3059:6
|
3059 | impl<'b> CatSegmentsParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
3059 - impl<'b> CatSegmentsParts<'b> {
3059 + impl CatSegmentsParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L2652
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:2652:6
|
2652 | impl<'b> CatRecoveryParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
2652 - impl<'b> CatRecoveryParts<'b> {
2652 + impl CatRecoveryParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L1410
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:1410:6
|
1410 | impl<'b> CatIndicesParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1410 - impl<'b> CatIndicesParts<'b> {
1410 + impl CatIndicesParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L907
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:907:6
|
907 | impl<'b> CatFielddataParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
907 - impl<'b> CatFielddataParts<'b> {
907 + impl CatFielddataParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L735
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:735:6
|
735 | impl<'b> CatCountParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
735 - impl<'b> CatCountParts<'b> {
735 + impl CatCountParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L337
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:337:6
|
337 | impl<'b> CatAllocationParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
337 - impl<'b> CatAllocationParts<'b> {
337 + impl CatAllocationParts<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
opensearch/src/cat.rs#L146
warning: the following explicit lifetimes could be elided: 'b
--> opensearch/src/cat.rs:146:6
|
146 | impl<'b> CatAliasesParts<'b> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
146 - impl<'b> CatAliasesParts<'b> {
146 + impl CatAliasesParts<'_> {
|
|
usage of a legacy numeric method:
opensearch/src/params.rs#L425
warning: usage of a legacy numeric method
--> opensearch/src/params.rs:425:34
|
425 | if value <= i32::max_value() as u64 {
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
help: use the associated constant instead
|
425 | if value <= i32::MAX as u64 {
| ~~~
|
usage of a legacy numeric method:
opensearch/src/params.rs#L414
warning: usage of a legacy numeric method
--> opensearch/src/params.rs:414:34
|
414 | if value <= i32::max_value() as i64 {
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#legacy_numeric_constants
= note: `#[warn(clippy::legacy_numeric_constants)]` on by default
help: use the associated constant instead
|
414 | if value <= i32::MAX as i64 {
| ~~~
|
the following explicit lifetimes could be elided: 'de:
opensearch/src/params.rs#L403
warning: the following explicit lifetimes could be elided: 'de
--> opensearch/src/params.rs:403:14
|
403 | impl<'de> Visitor<'de> for SlicesVisitor {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
403 - impl<'de> Visitor<'de> for SlicesVisitor {
403 + impl Visitor<'_> for SlicesVisitor {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/http/request.rs#L187
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/http/request.rs:187:6
|
187 | impl<'a> Body for &'a str {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
187 - impl<'a> Body for &'a str {
187 + impl Body for &str {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/http/request.rs#L173
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/http/request.rs:173:6
|
173 | impl<'a> Body for &'a [u8] {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
173 - impl<'a> Body for &'a [u8] {
173 + impl Body for &[u8] {
|
|
the following explicit lifetimes could be elided: 'a:
opensearch/src/http/request.rs#L65
warning: the following explicit lifetimes could be elided: 'a
--> opensearch/src/http/request.rs:65:6
|
65 | impl<'a, B: ?Sized> Body for &'a B
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
65 - impl<'a, B: ?Sized> Body for &'a B
65 + impl<B: ?Sized> Body for &B
|
|
clippy_check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|