Skip to content

Push on main

Push on main #4

Triggered via dynamic February 3, 2025 18:15
Status Success
Total duration 1m 38s
Artifacts

codeql

on: dynamic
Matrix: analyze
Fit to window
Zoom out
Zoom in

Annotations

5 warnings
the following explicit lifetimes could be elided: 'a: src/record.rs#L189
warning: the following explicit lifetimes could be elided: 'a --> src/record.rs:189:6 | 189 | impl<'a> MultiRecord<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 189 - impl<'a> MultiRecord<'a> { 189 + impl MultiRecord<'_> { |
the following explicit lifetimes could be elided: 'a: src/record.rs#L30
warning: the following explicit lifetimes could be elided: 'a --> src/record.rs:30:6 | 30 | impl<'a> std::fmt::Debug for MultiPlexedRecord<'a> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes help: elide the lifetimes | 30 - impl<'a> std::fmt::Debug for MultiPlexedRecord<'a> { 30 + impl std::fmt::Debug for MultiPlexedRecord<'_> { |
doc list item without indentation: src/persist_policy.rs#L30
warning: doc list item without indentation --> src/persist_policy.rs:30:5 | 30 | /// persistence guarantees for performance. | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation help: indent this line | 30 | /// persistence guarantees for performance. | ++
doc list item without indentation: src/persist_policy.rs#L29
warning: doc list item without indentation --> src/persist_policy.rs:29:5 | 29 | /// are considered are more frequent and one might want to sacrifice | ^ | = help: if this is supposed to be its own paragraph, add a blank line = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation = note: `#[warn(clippy::doc_lazy_continuation)]` on by default help: indent this line | 29 | /// are considered are more frequent and one might want to sacrifice | ++
the following explicit lifetimes could be elided: 'a: src/block_read_write.rs#L51
warning: the following explicit lifetimes could be elided: 'a --> src/block_read_write.rs:51:6 | 51 | impl<'a> BlockRead for ArrayReader<'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 | 51 - impl<'a> BlockRead for ArrayReader<'a> { 51 + impl BlockRead for ArrayReader<'_> { |