use new_derivable::New;
use std::collections::HashMap;
#[derive(New, Debug)]
pub struct TestStruct {
pub _0: (String, String),
pub truename: String,
pub testhashmap: HashMap<String, u64>,
}
fn main() {
let new = TestStruct::new(
(String::from("hi"), String::from("hi")),
String::from("hi"),
HashMap::new(),
);
println!("{:#?}", new);
}