Rust implementation of the Haxe serialization format, with serde support.
```rust use serde::{ Serialize, Deserialize };
struct Person { name: String, surname: String, age: u32, }
let person = Person { name: "John".toowned(), surname: "Doe".toowned(), age: 42 }; let serialized = "oy4:namey4:Johny7:surnamey3:Doey3:agei42g";
asserteq!(haxeformat::fromstr::