mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-06-14 04:41:01 +00:00
Temporarily ignore collection_is_never_read on FlattenSkipDeserializing
error: collection is never read
--> test_suite/tests/test_gen.rs:723:25
|
723 | #[derive(Serialize, Deserialize)]
| ^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collection_is_never_read
note: the lint level is defined here
--> test_suite/tests/test_gen.rs:23:9
|
23 | #![deny(clippy::collection_is_never_read)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: this error originates in the derive macro `Deserialize` (in Nightly builds, run with -Z macro-backtrace for more info)
This commit is contained in:
@@ -720,11 +720,14 @@ fn test_gen() {
|
|||||||
flat: StdOption<T>,
|
flat: StdOption<T>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[allow(clippy::collection_is_never_read)] // FIXME
|
||||||
pub struct FlattenSkipDeserializing<T> {
|
const _: () = {
|
||||||
#[serde(flatten, skip_deserializing)]
|
#[derive(Serialize, Deserialize)]
|
||||||
flat: T,
|
pub struct FlattenSkipDeserializing<T> {
|
||||||
}
|
#[serde(flatten, skip_deserializing)]
|
||||||
|
flat: T,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize)]
|
||||||
#[serde(untagged)]
|
#[serde(untagged)]
|
||||||
|
|||||||
Reference in New Issue
Block a user