Mutate API #446
Annotations
1 warning
[clippy] src/proto/single/mutation.rs#L80:
src/proto/single/mutation.rs#L80
warning: the following explicit lifetimes could be elided: 'a
--> src/proto/single/mutation.rs:80:6
|
80 | impl<'a> MutationFilter<'_> {
| ^^
...
94 | pub fn builder() -> MutationFilterBuilder<'a> {
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
80 ~ impl MutationFilter<'_> {
81 | /// Creates an empty filter.
...
93 | /// Creates a new builder for a [`MutationFilter`]
94 ~ pub fn builder() -> MutationFilterBuilder<'_> {
|
|