For CI #216
Annotations
180 errors
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/connection.rs#L98
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/connection.rs:98:6
|
98 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
| ^^
99 | for RunNaryConnectionTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
98 ~ impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
99 ~ for RunNaryConnectionTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L253
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:253:6
|
253 | impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
253 - impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
253 + impl<Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L242
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:242:6
|
242 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
242 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
242 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L217
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:217:6
|
217 | impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
217 - impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
217 + impl<Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L201
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:201:6
|
201 | impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
201 - impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
201 + impl<Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
| ^^
165 | for RunNaryChannelTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
165 ~ for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L252
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:252:6
|
252 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides
| ^^
253 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
252 ~ impl<Test, Overrides, const SIZE: usize> HasOverrides
253 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L241
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:241:6
|
241 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
241 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
241 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L199
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:199:6
|
199 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
199 - impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
199 + impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<1>
| ^^
165 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryNodeTest<1>
165 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L130
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:130:6
|
130 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
130 - impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
130 + impl<Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L235
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:235:6
|
235 | impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
235 - impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
235 + impl<Test, Overrides> HasOverrides for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L224
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:224:6
|
224 | impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
224 - impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
224 + impl<Test, Overrides> HasOverrides for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L183
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:183:6
|
183 | impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
183 - impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
183 + impl<Test, Overrides> BasicTest for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L116
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:116:6
|
116 | impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
116 - impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
116 + impl<Test, Overrides> BasicTest for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L107
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:107:6
|
107 | impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
107 - impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
107 + impl<Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L50
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:50:6
|
50 | impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
50 - impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
50 + impl<Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L251
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:251:6
|
251 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
251 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
251 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L240
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:240:6
|
240 | impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
240 - impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
240 + impl<Test, Overrides> HasOverrides for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L215
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:215:6
|
215 | impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
215 - impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
215 + impl<Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/connection.rs#L98
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/connection.rs:98:6
|
98 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
| ^^
99 | for RunNaryConnectionTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
98 ~ impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
99 ~ for RunNaryConnectionTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L253
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:253:6
|
253 | impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
253 - impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
253 + impl<Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L242
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:242:6
|
242 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
242 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
242 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L177
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:177:6
|
177 | impl<'a, Test: BinaryConnectionTest> BinaryConnectionTest
| ^^
178 | for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
177 ~ impl<Test: BinaryConnectionTest> BinaryConnectionTest
178 ~ for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L217
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:217:6
|
217 | impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
217 - impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
217 + impl<Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L201
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:201:6
|
201 | impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
201 - impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
201 + impl<Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L147
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:147:6
|
147 | impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
147 - impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
147 + impl<Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L326
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:326:6
|
326 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
326 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
326 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L315
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:315:6
|
315 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
315 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
315 + impl<Test, Overrides> HasOverrides for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
| ^^
165 | for RunNaryChannelTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
165 ~ for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L290
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:290:6
|
290 | impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
290 - impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
290 + impl<Test, Overrides> BinaryChannelTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L252
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:252:6
|
252 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides
| ^^
253 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
252 ~ impl<Test, Overrides, const SIZE: usize> HasOverrides
253 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L241
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:241:6
|
241 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
241 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
241 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L254
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:254:6
|
254 | impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
254 - impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
254 + impl<Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L199
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:199:6
|
199 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
199 - impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
199 + impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<1>
| ^^
165 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryNodeTest<1>
165 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L210
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:210:6
|
210 | impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
210 - impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
210 + impl<Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L349
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:349:6
|
349 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
349 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
349 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L338
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:338:6
|
338 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
338 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
338 + impl<Test, Overrides> HasOverrides for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L130
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:130:6
|
130 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
130 - impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
130 + impl<Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L314
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:314:6
|
314 | impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
314 - impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
314 + impl<Test, Overrides> BinaryChainTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L235
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:235:6
|
235 | impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
235 - impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
235 + impl<Test, Overrides> HasOverrides for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L224
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:224:6
|
224 | impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
224 - impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
224 + impl<Test, Overrides> HasOverrides for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L183
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:183:6
|
183 | impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
183 - impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
183 + impl<Test, Overrides> BasicTest for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L116
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:116:6
|
116 | impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
116 - impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
116 + impl<Test, Overrides> BasicTest for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L285
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:285:6
|
285 | impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
285 - impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
285 + impl<Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L246
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:246:6
|
246 | impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
246 - impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
246 + impl<Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L107
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:107:6
|
107 | impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
107 - impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
107 + impl<Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L50
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:50:6
|
50 | impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
50 - impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
50 + impl<Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L207
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:207:6
|
207 | impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
207 - impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
207 + impl<Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/connection.rs#L98
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/connection.rs:98:6
|
98 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
| ^^
99 | for RunNaryConnectionTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
98 ~ impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
99 ~ for RunNaryConnectionTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L253
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:253:6
|
253 | impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
253 - impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
253 + impl<Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L242
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:242:6
|
242 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
242 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
242 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L217
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:217:6
|
217 | impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
217 - impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
217 + impl<Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L251
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:251:6
|
251 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
251 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
251 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L201
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:201:6
|
201 | impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
201 - impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
201 + impl<Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L240
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:240:6
|
240 | impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
240 - impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
240 + impl<Test, Overrides> HasOverrides for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
| ^^
165 | for RunNaryChannelTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
165 ~ for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L215
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:215:6
|
215 | impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
215 - impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
215 + impl<Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/connection.rs#L98
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/connection.rs:98:6
|
98 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
| ^^
99 | for RunNaryConnectionTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
98 ~ impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE>
99 ~ for RunNaryConnectionTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L252
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:252:6
|
252 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides
| ^^
253 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
252 ~ impl<Test, Overrides, const SIZE: usize> HasOverrides
253 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L177
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:177:6
|
177 | impl<'a, Test: BinaryConnectionTest> BinaryConnectionTest
| ^^
178 | for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
177 ~ impl<Test: BinaryConnectionTest> BinaryConnectionTest
178 ~ for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L241
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:241:6
|
241 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
241 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
241 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/base.rs#L87
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/base.rs:87:6
|
87 | impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
87 - impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
87 + impl<Test, Overrides> PrimitiveTest for RunBasicTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L253
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:253:6
|
253 | impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
253 - impl<'a, Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'a, Test>
253 + impl<Test, Overrides> HasOverrides for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L147
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:147:6
|
147 | impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
147 - impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
147 + impl<Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L242
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:242:6
|
242 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
242 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'a, Test, SIZE>
242 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L326
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:326:6
|
326 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
326 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
326 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L315
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:315:6
|
315 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
315 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
315 + impl<Test, Overrides> HasOverrides for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L199
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:199:6
|
199 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
199 - impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
199 + impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L290
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:290:6
|
290 | impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
290 - impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
290 + impl<Test, Overrides> BinaryChannelTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L217
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:217:6
|
217 | impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
217 - impl<'a, Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'a, Test>
217 + impl<Test, Overrides, const SIZE: usize> NaryChannelTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L254
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:254:6
|
254 | impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
254 - impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
254 + impl<Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<1>
| ^^
165 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryNodeTest<1>
165 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L210
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:210:6
|
210 | impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
210 - impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
210 + impl<Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L201
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:201:6
|
201 | impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
201 - impl<'a, Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'a, Test>
201 + impl<Test> NaryChannelTest<2> for RunBinaryAsNaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L349
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:349:6
|
349 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
349 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
349 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L130
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:130:6
|
130 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
130 - impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
130 + impl<Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L338
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:338:6
|
338 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
338 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
338 + impl<Test, Overrides> HasOverrides for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/channel.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/channel.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
| ^^
165 | for RunNaryChannelTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryConnectionTest<SIZE>
165 ~ for RunNaryChannelTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L314
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:314:6
|
314 | impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
314 - impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
314 + impl<Test, Overrides> BinaryChainTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L235
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:235:6
|
235 | impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
235 - impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
235 + impl<Test, Overrides> HasOverrides for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L285
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:285:6
|
285 | impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
285 - impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
285 + impl<Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L224
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:224:6
|
224 | impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
224 - impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
224 + impl<Test, Overrides> HasOverrides for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/tagged.rs#L114
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/tagged.rs:114:6
|
114 | impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
114 - impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
114 + impl<Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L183
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:183:6
|
183 | impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
183 - impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
183 + impl<Test, Overrides> BasicTest for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/wasm_client.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/wasm_client.rs:30:6
|
30 | impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L252
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:252:6
|
252 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides
| ^^
253 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
252 ~ impl<Test, Overrides, const SIZE: usize> HasOverrides
253 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L246
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:246:6
|
246 | impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
246 - impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
246 + impl<Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L241
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:241:6
|
241 | impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
241 - impl<'a, Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'a, Test, SIZE>
241 + impl<Test, Overrides, const SIZE: usize> HasOverrides for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/version.rs#L10
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/version.rs:10:6
|
10 | impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
10 - impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
10 + impl<Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L116
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:116:6
|
116 | impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
116 - impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
116 + impl<Test, Overrides> BasicTest for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L207
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:207:6
|
207 | impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
207 - impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
207 + impl<Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L199
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:199:6
|
199 | impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
199 - impl<'a, Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'a, Test>
199 + impl<Test, Overrides, const SIZE: usize> NaryChainTest<SIZE> for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/transfer.rs#L92
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/transfer.rs:92:6
|
92 | impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
92 - impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
92 + impl<Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L107
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:107:6
|
107 | impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
107 - impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
107 + impl<Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/base.rs#L87
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/base.rs:87:6
|
87 | impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
87 - impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
87 + impl<Test, Overrides> PrimitiveTest for RunBasicTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L164
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:164:6
|
164 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<1>
| ^^
165 | for RunSelfConnectedNaryChainTest<'a, Test, SIZE>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
164 ~ impl<Test, Overrides, const SIZE: usize> NaryNodeTest<1>
165 ~ for RunSelfConnectedNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/proposal.rs#L56
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/proposal.rs:56:6
|
56 | impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
56 - impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
56 + impl<Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L50
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:50:6
|
50 | impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
50 - impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
50 + impl<Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/ica.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/ica.rs:30:6
|
30 | impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/nary/chain.rs#L130
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/nary/chain.rs:130:6
|
130 | impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
130 - impl<'a, Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'a, Test, SIZE>
130 + impl<Test, Overrides, const SIZE: usize> NaryNodeTest<SIZE> for RunNaryChainTest<'_, Test, SIZE>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee_grant.rs#L14
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee_grant.rs:14:6
|
14 | impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
14 - impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
14 + impl<Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L251
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:251:6
|
251 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
251 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
251 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee.rs#L72
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee.rs:72:6
|
72 | impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
72 - impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
72 + impl<Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L240
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:240:6
|
240 | impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
240 - impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
240 + impl<Test, Overrides> HasOverrides for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/crosschainquery.rs#L25
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/crosschainquery.rs:25:6
|
25 | impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
25 - impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
25 + impl<Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L235
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:235:6
|
235 | impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
235 - impl<'a, Test, Overrides> HasOverrides for RunSingleNodeTest<'a, Test>
235 + impl<Test, Overrides> HasOverrides for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/tagged.rs#L114
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/tagged.rs:114:6
|
114 | impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
114 - impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
114 + impl<Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L224
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:224:6
|
224 | impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
224 - impl<'a, Test, Overrides> HasOverrides for RunBinaryNodeTest<'a, Test>
224 + impl<Test, Overrides> HasOverrides for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/wasm_client.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/wasm_client.rs:30:6
|
30 | impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L183
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:183:6
|
183 | impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
183 - impl<'a, Test, Overrides> BasicTest for RunSingleNodeTest<'a, Test>
183 + impl<Test, Overrides> BasicTest for RunSingleNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/version.rs#L10
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/version.rs:10:6
|
10 | impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
10 - impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
10 + impl<Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L215
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:215:6
|
215 | impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
215 - impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
215 + impl<Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/authz.rs#L39
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/authz.rs:39:6
|
39 | impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
39 - impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
39 + impl<Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/node.rs#L116
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/node.rs:116:6
|
116 | impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
116 - impl<'a, Test, Overrides> BasicTest for RunBinaryNodeTest<'a, Test>
116 + impl<Test, Overrides> BasicTest for RunBinaryNodeTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/transfer.rs#L92
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/transfer.rs:92:6
|
92 | impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
92 - impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
92 + impl<Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L107
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:107:6
|
107 | impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
107 - impl<'a, Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'a, Test>
107 + impl<Test, Overrides> HasOverrides for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/async_icq.rs#L13
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/async_icq.rs:13:6
|
13 | impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= 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
|
13 - impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
13 + impl<Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L177
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:177:6
|
177 | impl<'a, Test: BinaryConnectionTest> BinaryConnectionTest
| ^^
178 | for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
177 ~ impl<Test: BinaryConnectionTest> BinaryConnectionTest
178 ~ for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/proposal.rs#L56
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/proposal.rs:56:6
|
56 | impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
56 - impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
56 + impl<Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/ics.rs#L50
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/ics.rs:50:6
|
50 | impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
50 - impl<'a, Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'a, Test>
50 + impl<Test, Overrides> BasicTest for RunInterchainSecurityChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/ica.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/ica.rs:30:6
|
30 | impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L251
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:251:6
|
251 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
251 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'a, Test>
251 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee_grant.rs#L14
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee_grant.rs:14:6
|
14 | impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
14 - impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
14 + impl<Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L240
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:240:6
|
240 | impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
240 - impl<'a, Test, Overrides> HasOverrides for RunBinaryConnectionTest<'a, Test>
240 + impl<Test, Overrides> HasOverrides for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee.rs#L72
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee.rs:72:6
|
72 | impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
72 - impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
72 + impl<Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L215
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:215:6
|
215 | impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
215 - impl<'a, Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'a, Test>
215 + impl<Test, Overrides> BinaryConnectionTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/crosschainquery.rs#L25
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/crosschainquery.rs:25:6
|
25 | impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
25 - impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
25 + impl<Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L147
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:147:6
|
147 | impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
147 - impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
147 + impl<Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/authz.rs#L39
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/authz.rs:39:6
|
39 | impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
39 - impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
39 + impl<Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L326
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:326:6
|
326 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
326 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
326 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/async_icq.rs#L13
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/async_icq.rs:13:6
|
13 | impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= 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
|
13 - impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
13 + impl<Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L315
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:315:6
|
315 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
315 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
315 + impl<Test, Overrides> HasOverrides for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L177
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:177:6
|
177 | impl<'a, Test: BinaryConnectionTest> BinaryConnectionTest
| ^^
178 | for RunTwoWayBinaryConnectionTest<'a, Test>
| ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
177 ~ impl<Test: BinaryConnectionTest> BinaryConnectionTest
178 ~ for RunTwoWayBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L290
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:290:6
|
290 | impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
290 - impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
290 + impl<Test, Overrides> BinaryChannelTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/connection.rs#L147
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/connection.rs:147:6
|
147 | impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
147 - impl<'a, Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'a, Test>
147 + impl<Test, Overrides> BinaryChainTest for RunBinaryConnectionTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L326
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:326:6
|
326 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
326 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'a, Test>
326 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L315
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:315:6
|
315 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
315 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChannelTest<'a, Test>
315 + impl<Test, Overrides> HasOverrides for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L254
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:254:6
|
254 | impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
254 - impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
254 + impl<Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L290
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:290:6
|
290 | impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
290 - impl<'a, Test, Overrides> BinaryChannelTest for RunWithSupervisor<'a, Test>
290 + impl<Test, Overrides> BinaryChannelTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L210
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:210:6
|
210 | impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
210 - impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
210 + impl<Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L254
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:254:6
|
254 | impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
254 - impl<'a, Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'a, Test> {
254 + impl<Test: BinaryChannelTest> BinaryChannelTest for RunTwoWayBinaryChannelTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L349
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:349:6
|
349 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
349 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
349 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L338
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:338:6
|
338 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
338 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
338 + impl<Test, Overrides> HasOverrides for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/channel.rs#L210
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/channel.rs:210:6
|
210 | impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
210 - impl<'a, Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'a, Test>
210 + impl<Test, Overrides> BinaryConnectionTest for RunBinaryChannelTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L314
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:314:6
|
314 | impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
314 - impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
314 + impl<Test, Overrides> BinaryChainTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L349
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:349:6
|
349 | impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
349 - impl<'a, Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'a, Test>
349 + impl<Test, Overrides> HasOverrides for RunTwoWayBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L338
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:338:6
|
338 | impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
338 - impl<'a, Test, Overrides> HasOverrides for RunBinaryChainTest<'a, Test>
338 + impl<Test, Overrides> HasOverrides for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L314
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:314:6
|
314 | impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
314 - impl<'a, Test, Overrides> BinaryChainTest for RunWithSupervisor<'a, Test>
314 + impl<Test, Overrides> BinaryChainTest for RunWithSupervisor<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L285
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:285:6
|
285 | impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
285 - impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
285 + impl<Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L246
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:246:6
|
246 | impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
246 - impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
246 + impl<Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L285
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:285:6
|
285 | impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
285 - impl<'a, Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'a, Test> {
285 + impl<Test: BinaryChainTest> BinaryChainTest for RunTwoWayBinaryChainTest<'_, Test> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L246
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:246:6
|
246 | impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
246 - impl<'a, Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'a, Test>
246 + impl<Test, Overrides> InterchainSecurityChainTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L207
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:207:6
|
207 | impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
207 - impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
207 + impl<Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/binary/chain.rs#L207
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/binary/chain.rs:207:6
|
207 | impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
207 - impl<'a, Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'a, Test>
207 + impl<Test, Overrides> BinaryNodeTest for RunBinaryChainTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/base.rs#L87
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/base.rs:87:6
|
87 | impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
87 - impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
87 + impl<Test, Overrides> PrimitiveTest for RunBasicTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/framework/base.rs#L87
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/framework/base.rs:87:6
|
87 | impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
87 - impl<'a, Test, Overrides> PrimitiveTest for RunBasicTest<'a, Test>
87 + impl<Test, Overrides> PrimitiveTest for RunBasicTest<'_, Test>
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/tagged.rs#L114
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/tagged.rs:114:6
|
114 | impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
114 - impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
114 + impl<Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/wasm_client.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/wasm_client.rs:30:6
|
30 | impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/tagged.rs#L114
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/tagged.rs:114:6
|
114 | impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
114 - impl<'a, Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
114 + impl<Chain: Send> TaggedChainDriverExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/version.rs#L10
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/version.rs:10:6
|
10 | impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
10 - impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
10 + impl<Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/wasm_client.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/wasm_client.rs:30:6
|
30 | impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> StoreWasmClientCodeMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/version.rs#L10
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/version.rs:10:6
|
10 | impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
10 - impl<'a, Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
10 + impl<Chain: Send> ChainVersionMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/transfer.rs#L92
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/transfer.rs:92:6
|
92 | impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
92 - impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
92 + impl<Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/transfer.rs#L92
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/transfer.rs:92:6
|
92 | impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
92 - impl<'a, Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
92 + impl<Chain: Send> ChainTransferMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/proposal.rs#L56
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/proposal.rs:56:6
|
56 | impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
56 - impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
56 + impl<Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/proposal.rs#L56
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/proposal.rs:56:6
|
56 | impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
56 - impl<'a, Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &'a ChainDriver> {
56 + impl<Chain: Send> ChainProposalMethodsExt for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/ica.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/ica.rs:30:6
|
30 | impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee_grant.rs#L14
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee_grant.rs:14:6
|
14 | impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
14 - impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
14 + impl<Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/ica.rs#L30
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/ica.rs:30:6
|
30 | impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
30 - impl<'a, Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
30 + impl<Chain: Send> InterchainAccountMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee_grant.rs#L14
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee_grant.rs:14:6
|
14 | impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
14 - impl<'a, Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
14 + impl<Chain: Send> FeeGrantMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee.rs#L72
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee.rs:72:6
|
72 | impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
72 - impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
72 + impl<Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/crosschainquery.rs#L25
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/crosschainquery.rs:25:6
|
25 | impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
25 - impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
25 + impl<Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/fee.rs#L72
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/fee.rs:72:6
|
72 | impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
72 - impl<'a, Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
72 + impl<Chain: Send> ChainFeeMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/crosschainquery.rs#L25
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/crosschainquery.rs:25:6
|
25 | impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
25 - impl<'a, Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
25 + impl<Chain: Send> CrossChainQueryMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/authz.rs#L39
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/authz.rs:39:6
|
39 | impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
39 - impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
39 + impl<Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/authz.rs#L39
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/authz.rs:39:6
|
39 | impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
39 - impl<'a, Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
39 + impl<Chain: Send> AuthzMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/async_icq.rs#L13
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/async_icq.rs:13:6
|
13 | impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= 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
|
13 - impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
13 + impl<Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|
the following explicit lifetimes could be elided: 'a:
tools/test-framework/src/chain/ext/async_icq.rs#L13
error: the following explicit lifetimes could be elided: 'a
--> tools/test-framework/src/chain/ext/async_icq.rs:13:6
|
13 | impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
| ^^ ^^
|
= 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
|
13 - impl<'a, Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &'a ChainDriver> {
13 + impl<Chain: Send> AsyncIcqMethodsExt<Chain> for MonoTagged<Chain, &ChainDriver> {
|
|