Skip to content

fix: msg id conflict check #26

fix: msg id conflict check

fix: msg id conflict check #26

Triggered via push December 7, 2024 13:42
Status Success
Total duration 2m 44s
Artifacts
Fit to window
Zoom out
Zoom in

Annotations

7 warnings
the following explicit lifetimes could be elided: 'a: src/protocol/frame.rs#L1547
warning: the following explicit lifetimes could be elided: 'a --> src/protocol/frame.rs:1547:6 | 1547 | impl<'a> Display for SOA<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 1547 - impl<'a> Display for SOA<'a> { 1547 + impl Display for SOA<'_> { |
the following explicit lifetimes could be elided: 'a: src/protocol/frame.rs#L1400
warning: the following explicit lifetimes could be elided: 'a --> src/protocol/frame.rs:1400:6 | 1400 | impl<'a> Display for MX<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 1400 - impl<'a> Display for MX<'a> { 1400 + impl Display for MX<'_> { |
the following explicit lifetimes could be elided: 'a: src/protocol/frame.rs#L1368
warning: the following explicit lifetimes could be elided: 'a --> src/protocol/frame.rs:1368:6 | 1368 | impl<'a> Display for AAAA<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 1368 - impl<'a> Display for AAAA<'a> { 1368 + impl Display for AAAA<'_> { |
the following explicit lifetimes could be elided: 'a: src/protocol/frame.rs#L1181
warning: the following explicit lifetimes could be elided: 'a --> src/protocol/frame.rs:1181:6 | 1181 | impl<'a> Display for A<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 1181 - impl<'a> Display for A<'a> { 1181 + impl Display for A<'_> { |
the following explicit lifetimes could be elided: 'a: src/protocol/frame.rs#L1155
warning: the following explicit lifetimes could be elided: 'a --> src/protocol/frame.rs:1155:6 | 1155 | impl<'a> Display for RData<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 1155 - impl<'a> Display for RData<'a> { 1155 + impl Display for RData<'_> { |
the following explicit lifetimes could be elided: 'a: src/protocol/frame.rs#L875
warning: the following explicit lifetimes could be elided: 'a --> src/protocol/frame.rs:875:6 | 875 | impl<'a> Display for Question<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 875 - impl<'a> Display for Question<'a> { 875 + impl Display for Question<'_> { |
build
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636