Add encode/decode tests #3136
clippy
5 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 5 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.84.1 (e71f9a9a9 2025-01-27)
- cargo 1.84.1 (66221abde 2024-11-19)
- clippy 0.1.84 (e71f9a9a98 2025-01-27)
Annotations
Check warning on line 23 in partiql-conformance-tests/src/bin/generate_comparison_report.rs
github-actions / clippy
doc list item without indentation
warning: doc list item without indentation
--> partiql-conformance-tests/src/bin/generate_comparison_report.rs:23:5
|
23 | /// regressed behavior)
| ^
|
= 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
|
23 | /// regressed behavior)
| ++
Check warning on line 607 in extension/partiql-extension-ion/src/boxed_ion.rs
github-actions / clippy
variant `Sequence` is never constructed
warning: variant `Sequence` is never constructed
--> extension/partiql-extension-ion/src/boxed_ion.rs:607:5
|
604 | enum BoxedIonValue {
| ------------- variant in this enum
...
607 | Sequence(Sequence),
| ^^^^^^^^
|
= note: `BoxedIonValue` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
Check warning on line 182 in extension/partiql-extension-ion/src/boxed_ion.rs
github-actions / clippy
unused variable: `deserializer`
warning: unused variable: `deserializer`
--> extension/partiql-extension-ion/src/boxed_ion.rs:182:23
|
182 | fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
| ^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_deserializer`
Check warning on line 172 in extension/partiql-extension-ion/src/boxed_ion.rs
github-actions / clippy
unused variable: `serializer`
warning: unused variable: `serializer`
--> extension/partiql-extension-ion/src/boxed_ion.rs:172:28
|
172 | fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
| ^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_serializer`
|
= note: `#[warn(unused_variables)]` on by default
Check warning on line 5 in extension/partiql-extension-ion/src/lib.rs
github-actions / clippy
unused imports: `Deserialize` and `Serialize`
warning: unused imports: `Deserialize` and `Serialize`
--> extension/partiql-extension-ion/src/lib.rs:5:13
|
5 | use serde::{Deserialize, Serialize};
| ^^^^^^^^^^^ ^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default