Trait Author
last_git_commit
pub trait Author { fn name(&self) -> String; fn email(&self) -> String; }
fn name(&self) -> String
fn email(&self) -> String
impl Author for LGCAuthor