Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: Remove explicit lifetimes #1180

Merged
merged 1 commit into from
Nov 1, 2024

Conversation

caspermeijn
Copy link
Collaborator

cargo clippy reports:

error: the following explicit lifetimes could be elided: 'a
  --> prost-types/src/conversions.rs:46:6
   |
46 | impl<'a> From<&'a str> for Value {
   |      ^^        ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   = note: `-D clippy::needless-lifetimes` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
   |
46 - impl<'a> From<&'a str> for Value {
46 + impl From<&str> for Value {

`cargo clippy` reports:
```
error: the following explicit lifetimes could be elided: 'a
  --> prost-types/src/conversions.rs:46:6
   |
46 | impl<'a> From<&'a str> for Value {
   |      ^^        ^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
   = note: `-D clippy::needless-lifetimes` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
   |
46 - impl<'a> From<&'a str> for Value {
46 + impl From<&str> for Value {
```
@caspermeijn caspermeijn added this pull request to the merge queue Nov 1, 2024
Merged via the queue into tokio-rs:master with commit c29047e Nov 1, 2024
16 checks passed
@caspermeijn caspermeijn deleted the explicit_lifetimes branch November 1, 2024 13:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant