Skip to content

refactor: ManagedResultArgLoader replaced with ManagedVec iterators

Sign in for the full log view
GitHub Actions / clippy failed Dec 11, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (2)

framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs|102 col 6| warning: the following explicit lifetimes could be elided: 'a
--> framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6
|
102 | impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer>
| ^^ ^^
|
= 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
|
102 - impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer>
102 + impl TopDecodeMultiInput for ManagedVecRefIterator<', A, ManagedBuffer>
|
framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs|102 col 6| warning: the following explicit lifetimes could be elided: 'a
--> framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6
|
102 | impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer>
| ^^ ^^
|
= 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
|
102 - impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer>
102 + impl TopDecodeMultiInput for ManagedVecRefIterator<'
, A, ManagedBuffer>
|

Filtered Findings (0)

Annotations

Check warning on line 102 in framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs#L102

warning: the following explicit lifetimes could be elided: 'a
   --> framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6
    |
102 | impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
    |      ^^                                                   ^^
    |
    = 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
    |
102 - impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
102 + impl<A> TopDecodeMultiInput for ManagedVecRefIterator<'_, A, ManagedBuffer<A>>
    |
Raw output
framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6:w:warning: the following explicit lifetimes could be elided: 'a
   --> framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6
    |
102 | impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
    |      ^^                                                   ^^
    |
    = 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
    |
102 - impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
102 + impl<A> TopDecodeMultiInput for ManagedVecRefIterator<'_, A, ManagedBuffer<A>>
    |


__END__

Check warning on line 102 in framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

[clippy] framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs#L102

warning: the following explicit lifetimes could be elided: 'a
   --> framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6
    |
102 | impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
    |      ^^                                                   ^^
    |
    = 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
    |
102 - impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
102 + impl<A> TopDecodeMultiInput for ManagedVecRefIterator<'_, A, ManagedBuffer<A>>
    |
Raw output
framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6:w:warning: the following explicit lifetimes could be elided: 'a
   --> framework/base/src/types/managed/wrapped/managed_vec_iter_ref.rs:102:6
    |
102 | impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
    |      ^^                                                   ^^
    |
    = 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
    |
102 - impl<'a, A> TopDecodeMultiInput for ManagedVecRefIterator<'a, A, ManagedBuffer<A>>
102 + impl<A> TopDecodeMultiInput for ManagedVecRefIterator<'_, A, ManagedBuffer<A>>
    |


__END__