如何反序列化包含 table 数组的 TOML table
How to deserialize a TOML table containing an array of tables
获取以下 TOML 数据:
[[items]]
foo = 10
bar = 100
[[items]]
foo = 12
bar = 144
以及以下防锈代码:
use serde_derive::Deserialize;
use toml::from_str;
use toml::value::Table;
#[derive(Deserialize)]
struct Item {
foo: String,
bar: String
}
fn main() {
let items_string: &str = "[[items]]\nfoo = 10\nbar = 100\n\n[[items]]\nfoo = 12\nbar = 144\n";
let items_table: Table = from_str(items_string).unwrap();
let items: Vec<Item> = items_table["items"].as_array().unwrap().to_vec();
// Uncomment this line to print the table
// println!("{:?}", items_table);
}
如你所见,程序does not compile,在return中给出了这个错误:
expected struct Item
, found enum toml::value::Value
我明白它的意思,但我不知道如何解决这个问题并实现我最初想做的事情:将父 table 的子数组转换为结构数组而不是 tables.
的数组
您可以解析为预定义的 TOML 类型,例如 Table
,但这些类型不知道预定义类型之外的类型。这些类型主要在数据的实际类型未知或不重要时使用。
在您的情况下,这意味着 TOML Table
类型不知道您的 Item
类型,也无法让其知道。
但是您可以轻松地解析为不同的类型:
use serde_derive::Deserialize;
use std::collections::HashMap;
use toml::from_str;
#[derive(Deserialize, Debug)]
struct Item {
foo: u64,
bar: u64,
}
fn main() {
let items_string: &str = "[[items]]\nfoo = 10\nbar = 100\n\n[[items]]\nfoo = 12\nbar = 144\n";
let items_table: HashMap<String, Vec<Item>> = from_str(items_string).unwrap();
let items: &[Item] = &items_table["items"];
println!("{:?}", items_table);
println!("{:?}", items);
}
获取以下 TOML 数据:
[[items]]
foo = 10
bar = 100
[[items]]
foo = 12
bar = 144
以及以下防锈代码:
use serde_derive::Deserialize;
use toml::from_str;
use toml::value::Table;
#[derive(Deserialize)]
struct Item {
foo: String,
bar: String
}
fn main() {
let items_string: &str = "[[items]]\nfoo = 10\nbar = 100\n\n[[items]]\nfoo = 12\nbar = 144\n";
let items_table: Table = from_str(items_string).unwrap();
let items: Vec<Item> = items_table["items"].as_array().unwrap().to_vec();
// Uncomment this line to print the table
// println!("{:?}", items_table);
}
如你所见,程序does not compile,在return中给出了这个错误:
expected struct
Item
, found enumtoml::value::Value
我明白它的意思,但我不知道如何解决这个问题并实现我最初想做的事情:将父 table 的子数组转换为结构数组而不是 tables.
的数组您可以解析为预定义的 TOML 类型,例如 Table
,但这些类型不知道预定义类型之外的类型。这些类型主要在数据的实际类型未知或不重要时使用。
在您的情况下,这意味着 TOML Table
类型不知道您的 Item
类型,也无法让其知道。
但是您可以轻松地解析为不同的类型:
use serde_derive::Deserialize;
use std::collections::HashMap;
use toml::from_str;
#[derive(Deserialize, Debug)]
struct Item {
foo: u64,
bar: u64,
}
fn main() {
let items_string: &str = "[[items]]\nfoo = 10\nbar = 100\n\n[[items]]\nfoo = 12\nbar = 144\n";
let items_table: HashMap<String, Vec<Item>> = from_str(items_string).unwrap();
let items: &[Item] = &items_table["items"];
println!("{:?}", items_table);
println!("{:?}", items);
}