1 2 3 4 5 6 7 8 9 10 11 12
#[derive(Debug, Clone, PartialEq)] pub struct Counter { pub r#type: i64, } impl Counter { pub fn new(r#type: i64) -> Self { Self { r#type, } } }