Merge pull request #50 from LighghtEeloo/derive_clone #7
Annotations
29 warnings
statement with no effect:
src/lib.rs#L1555
warning: statement with no effect
--> src/lib.rs:1555:9
|
1555 | map[4];
| ^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#no_effect
= note: `#[warn(clippy::no_effect)]` on by default
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L1045
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:1045:6
|
1045 | impl<'a, V> ExactSizeIterator for ValuesMut<'a, V> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1045 - impl<'a, V> ExactSizeIterator for ValuesMut<'a, V> {}
1045 + impl<V> ExactSizeIterator for ValuesMut<'_, V> {}
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L1026
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:1026:6
|
1026 | impl<'a, V> ExactSizeIterator for Values<'a, V> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1026 - impl<'a, V> ExactSizeIterator for Values<'a, V> {}
1026 + impl<V> ExactSizeIterator for Values<'_, V> {}
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L1009
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:1009:6
|
1009 | impl<'a, V> DoubleEndedIterator for Keys<'a, V> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1009 - impl<'a, V> DoubleEndedIterator for Keys<'a, V> {
1009 + impl<V> DoubleEndedIterator for Keys<'_, V> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L1007
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:1007:6
|
1007 | impl<'a, V> ExactSizeIterator for Keys<'a, V> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
1007 - impl<'a, V> ExactSizeIterator for Keys<'a, V> {}
1007 + impl<V> ExactSizeIterator for Keys<'_, V> {}
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L996
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:996:6
|
996 | impl<'a, V> Iterator for Keys<'a, V> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
996 - impl<'a, V> Iterator for Keys<'a, V> {
996 + impl<V> Iterator for Keys<'_, V> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L990
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:990:6
|
990 | impl<'a, V> DoubleEndedIterator for Drain<'a, V> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
990 - impl<'a, V> DoubleEndedIterator for Drain<'a, V> {
990 + impl<V> DoubleEndedIterator for Drain<'_, V> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L988
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:988:6
|
988 | impl<'a, V> ExactSizeIterator for Drain<'a, V> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
988 - impl<'a, V> ExactSizeIterator for Drain<'a, V> {}
988 + impl<V> ExactSizeIterator for Drain<'_, V> {}
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L977
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:977:6
|
977 | impl<'a, V> Iterator for Drain<'a, V> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
977 - impl<'a, V> Iterator for Drain<'a, V> {
977 + impl<V> Iterator for Drain<'_, V> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L942
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:942:6
|
942 | impl<'a, V> ExactSizeIterator for IterMut<'a, V> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
942 - impl<'a, V> ExactSizeIterator for IterMut<'a, V> {}
942 + impl<V> ExactSizeIterator for IterMut<'_, V> {}
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L928
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:928:6
|
928 | impl<'a, V> ExactSizeIterator for Iter<'a, V> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
928 - impl<'a, V> ExactSizeIterator for Iter<'a, V> {}
928 + impl<V> ExactSizeIterator for Iter<'_, V> {}
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L861
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:861:6
|
861 | impl<'a, V> IndexMut<&'a usize> for VecMap<V> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
861 - impl<'a, V> IndexMut<&'a usize> for VecMap<V> {
861 + impl<V> IndexMut<&usize> for VecMap<V> {
|
|
the following explicit lifetimes could be elided: 'a:
src/lib.rs#L845
warning: the following explicit lifetimes could be elided: 'a
--> src/lib.rs:845:6
|
845 | impl<'a, V> Index<&'a usize> for VecMap<V> {
| ^^ ^^
|
= 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
|
845 - impl<'a, V> Index<&'a usize> for VecMap<V> {
845 + impl<V> Index<&usize> for VecMap<V> {
|
|
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
fmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
clippy
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
docs
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|