Serialize a json string as object with Serde
I have the following struct #[derive(Serialize)] pub struct MyStruct { pub id: String, pub score: f32, pub json: String, } The json field always contains a valid JSON object already stringified. Given an instance, I would like to serialize it…