use derive::*; use crimtag::*; #[derive(CrimtagMappable)] pub struct SubTest { name: String, byline: String, amount: i64, } #[derive(CrimtagMappable)] pub struct Test { number: i32, something: f64, inner_thing: String, sub: SubTest, stuff: Vec, } #[test] fn it_works() { }