use toml::Value;
let value = "foo = 'bar'".parse::<Value>().unwrap();
assert_eq!(value["foo"].as_str(), Some("bar"));
Value
类型实现了许多便利的方法和特征;上面的用例中使用了
FromStr
来将
str
解析为
Value
。
反序列化和序列化
This crate supports
serde
1.0 with a number of implementations of the
Deserialize
,
Serialize
,
Deserializer
, and
Serializer
traits. Namely, you'll find: