我正在尝试使用 Serde根据以下结构反序列化 JSON ( serde-json
) 和 XML ( ) 文件:serde-xml-rs
use serde_derive::Deserialize;
#[derive(Debug, Clone, PartialEq, Deserialize)]
pub struct SchemaConfig {
pub name: String,
#[serde(rename = "Cube")]
pub cubes: Vec<CubeConfig>,
}
我要反序列化的字段根据文件类型具有不同的名称。在这种情况下,我希望 JSON 文件有一个cubes
包含多维数据集列表的键,但 XML 中的等价物将是多个<Cube />
元素。
我不知道如何同时接受cubes
和Cube
作为反序列化的键。我发现最接近的是#[serde(rename = "Cube")]
选项,但是当我使用它时,JSON 反序列化停止工作,因为它只接受Cube
密钥。如果我删除该选项,XML 反序列化将停止工作,因为它只接受cubes
作为密钥。
有没有一种简单的方法可以在 Serde 中实现这一点?