Day 1 #4
Annotations
6 errors
the following explicit lifetimes could be elided: 'h:
src/helpers/regex.rs#L11
error: the following explicit lifetimes could be elided: 'h
--> src/helpers/regex.rs:11:6
|
11 | impl<'h> CapturesHelper for Captures<'h> {
| ^^ ^^
|
= 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
|
11 - impl<'h> CapturesHelper for Captures<'h> {
11 + impl CapturesHelper for Captures<'_> {
|
|
the following explicit lifetimes could be elided: 'h:
src/helpers/regex.rs#L11
error: the following explicit lifetimes could be elided: 'h
--> src/helpers/regex.rs:11:6
|
11 | impl<'h> CapturesHelper for Captures<'h> {
| ^^ ^^
|
= 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
|
11 - impl<'h> CapturesHelper for Captures<'h> {
11 + impl CapturesHelper for Captures<'_> {
|
|
Clippy validation
Clippy has exited with exit code 101
|
the following explicit lifetimes could be elided: 'h:
src/helpers/regex.rs#L11
error: the following explicit lifetimes could be elided: 'h
--> src/helpers/regex.rs:11:6
|
11 | impl<'h> CapturesHelper for Captures<'h> {
| ^^ ^^
|
= 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
|
11 - impl<'h> CapturesHelper for Captures<'h> {
11 + impl CapturesHelper for Captures<'_> {
|
|
the following explicit lifetimes could be elided: 'h:
src/helpers/regex.rs#L11
error: the following explicit lifetimes could be elided: 'h
--> src/helpers/regex.rs:11:6
|
11 | impl<'h> CapturesHelper for Captures<'h> {
| ^^ ^^
|
= 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
|
11 - impl<'h> CapturesHelper for Captures<'h> {
11 + impl CapturesHelper for Captures<'_> {
|
|
Clippy validation with all features
Clippy has exited with exit code 101
|