Derive macro for gmtpl_value
toml [dependencies] gtmpl_derive = "0.4"
```rust use gtmplderive::Gtmpl; use gtmplvalue::Value;
struct Foo { bar: u8 }
fn main() { let v: Value = (Foo { bar: 23 }).into(); } ```