1 2 3 4 5 6 7 8
#[derive(Debug, Clone)] pub struct Commit { pub hash: String, pub date: String, pub message: String, pub added: u64, pub deleted: u64, }