refactor(cli): merge query
subcommand into search
(#34)
#21
Annotations
2 warnings
Check | Clippy:
src/icon.rs#L63
warning: the following explicit lifetimes could be elided: 'de
--> src/icon.rs:63:14
|
63 | impl<'de> Visitor<'de> for CodepointVisitor {
| ^^^ ^^^
|
= 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
|
63 - impl<'de> Visitor<'de> for CodepointVisitor {
63 + impl Visitor<'_> for CodepointVisitor {
|
|
Check | Clippy:
src/icon.rs#L167
warning: the following explicit lifetimes could be elided: 'de
--> src/icon.rs:167:18
|
167 | impl<'de> Visitor<'de> for SubVisitor {
| ^^^ ^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
167 - impl<'de> Visitor<'de> for SubVisitor {
167 + impl Visitor<'_> for SubVisitor {
|
|
Loading