Add Datadog third-party license file #164
clippy
5 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 5 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.84.0 (9fc6b4312 2025-01-07)
- cargo 1.84.0 (66221abde 2024-11-19)
- clippy 0.1.84 (9fc6b43126 2025-01-07)
Annotations
Check warning on line 189 in src/record.rs
github-actions / clippy
the following explicit lifetimes could be elided: 'a
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<'_> {
|
Check warning on line 30 in src/record.rs
github-actions / clippy
the following explicit lifetimes could be elided: 'a
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<'_> {
|
Check warning on line 30 in src/persist_policy.rs
github-actions / clippy
doc list item without indentation
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.
| ++
Check warning on line 29 in src/persist_policy.rs
github-actions / clippy
doc list item without indentation
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
| ++
Check warning on line 51 in src/block_read_write.rs
github-actions / clippy
the following explicit lifetimes could be elided: 'a
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<'_> {
|