简体   繁体   English

如何将多个键值条目的 JSON object 反序列化为 Rust 中的自定义结构

[英]How to deserialize JSON object of multiple key value entries to custom struct in Rust

I am trying to deserialize a set of unknown key-value style labels from JSON into my struct.我正在尝试将一组未知的键值样式标签从 JSON 反序列化到我的结构中。

This is my current implementation of parsing the JSON:这是我当前解析 JSON 的实现:

use std::collections::HashMap;
use serde::{Serialize, Deserialize};
use anyhow::Result;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Node {
    metadata: Metadata,
    pub spec: Spec,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Metadata {
    name: String,
    labels: HashMap<String, String>,
    expires: String,
    id: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Spec {
    pub hostname: String,
}

fn main() -> Result<()> {
    let json = r#"
[
  {
    "metadata": {
      "name": "161bee39-cf07-4e31-90ba-6593c9f505cb",
      "labels": {
        "application": "api",
        "owner": "team_x"
      },
      "expires": "2021-12-06T20:49:04.136656523Z",
      "id": 1638823144137190452
    },
    "spec": {
      "hostname": "host1.example.com"
    }
  },
  {
    "metadata": {
      "name": "c1b3ee09-8e4a-49d4-93b8-95cbcb676f20",
      "labels": {
        "application": "database",
        "owner": "team_y"
      },
      "expires": "2021-12-06T20:49:55.23841272Z",
      "id": 1638823195247684748
    },
    "spec": {
      "hostname": "host2.example.com"
    }
  }
]
    "#;
    let nodes: Vec<Node> = serde_json::from_str(json)?;
    println!("{:?}", nodes);
    Ok(())
}

The example works as it should, but now I would like to add a Label struct like this:该示例可以正常工作,但现在我想添加一个 Label 结构,如下所示:

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Metadata {
    name: String,
    labels: Vec<Label>,
    expires: String,
    id: i64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Label {
    key: String,
    value: String,
}

This does obviously not work, but I am unsure how to go on from here.这显然不起作用,但我不确定如何从这里开始 go 。 From my research prior to this question, I know that you can implement a custom Deserializer, but I could not find out how to properly do that.根据我在这个问题之前的研究,我知道您可以实现自定义反序列化器,但我不知道如何正确地做到这一点。 Maybe this is also not the best approach and I am not seeing the obvious solution.也许这也不是最好的方法,我没有看到明显的解决方案。

Thanks in advance for any example or help.在此先感谢您提供任何示例或帮助。

As of Stargateurs comment, the serde_with crate offers a solution to this:根据 Stargateurs 的评论, serde_with板条箱为此提供了解决方案:

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Metadata {
    name: String,
    #[serde(with = "serde_with::rust::tuple_list_as_map")]
    labels: Vec<Label>,
    expires: String,
    id: i64,
}

type Label = (String, String);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM