Rust Serde Json
📝
内容提要
背景 今天学习 The Rust Cookbook 的时候看到一段 JSON 解码的代码: #[macro_use] extern crate serde_json; use serde_json::{Value, Error}; fn main() -> Result<(), Error> { let j = r#"{ ...
➡️
背景 今天学习 The Rust Cookbook 的时候看到一段 JSON 解码的代码: #[macro_use] extern crate serde_json; use serde_json::{Value, Error}; fn main() -> Result<(), Error> { let j = r#"{ ...