The cherry on the cake (on top of SerDe) to simplify custom serialize
and deserialize
traits.
Writing visitor/deserialise and serialize traits can be quite annoying, and sometime you just know how to transform your struct(s) into another form that suits your need. With dessert you just need to create an intermediate struct and the From/Into traits to convert to it, and tell dessert to use this struct as an intermediate.
You can run examples with $cargo run --examples demo
```rust
extern crate dessertderive; extern crate dessert; extern crate serde; extern crate serdejson;
extern crate serde_derive;
use dessert::ViaDeserialize;
struct FrenchToast { ingredient: String, }
struct Intermediate { val: String, }
impl From
fn main() { let serializedstring= "{\"val\":\"Butter\"}"; let v: FrenchToast = serdejson::fromstr(serializedstring).unwrap(); println!("Serialized form: {}", serialized_string); println!("Debug format : {:?}", v) }
// Serialized form: {"val":"Butter"} // Debug format : FrenchToast { ingredient: "Butter" } ```