⬆️ update actions/checkout action to v4.2.0 (#364) #964
Annotations
2 warnings
Run clechasseur/rs-clippy-check@v3:
src/modules/location.rs#L82
warning: the borrowed expression implements the required traits
--> src/modules/location.rs:82:5
|
82 | / &ApiQuery::location(ApiName::OpenStreetMap, address, language)
83 | | .convert()
84 | | .assemble(),
| |_______________________________^
|
= 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
help: change this to
|
82 ~ ApiQuery::location(ApiName::OpenStreetMap, address, language)
83 ~ .convert()
84 ~ .assemble(),
|
|
Run clechasseur/rs-clippy-check@v3:
src/modules/location.rs#L97
warning: the borrowed expression implements the required traits
--> src/modules/location.rs:97:9
|
97 | .get(&ApiQuery::location(ApiName::OpenMeteo, address, language).convert().assemble())
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `ApiQuery::location(ApiName::OpenMeteo, address, language).convert().assemble()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
|
Loading