onefetch 2.27.1

Command-line Git information tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Hash, PartialOrd, Ord, Eq, PartialEq)]
pub struct Sig {
    pub name: gix::bstr::BString,
    pub email: gix::bstr::BString,
}

impl From<gix::actor::Signature> for Sig {
    fn from(gix::actor::Signature { name, email, .. }: gix::actor::Signature) -> Self {
        Self { name, email }
    }
}