Struct git_historian::parsing::ParsedCommit
[−]
[src]
pub struct ParsedCommit {
pub id: SHA1,
pub when: Timespec,
pub deltas: Vec<FileDelta>,
}Info about a commit pulled from git log (or at least the bits we care about)
Fields
id: SHA1
when: Timespec
The Unix timestamp (in seconds) of the commit
deltas: Vec<FileDelta>
Trait Implementations
impl Debug for ParsedCommit[src]
impl Clone for ParsedCommit[src]
fn clone(&self) -> ParsedCommit
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for ParsedCommit[src]
fn default() -> ParsedCommit
Returns the "default value" for a type. Read more