Struct changelog::commit::Commit [] [src]

pub struct Commit {
    pub sha: String,
    pub author: String,
    pub time: String,
    pub summary: String,
    pub number: Option<u32>,
    pub lines: Vec<Line>,
}

A single commit

Fields

The change SHA

The change author

The change timestamp

The change summary

The change number

The message lines

Trait Implementations

impl Debug for Commit
[src]

[src]

Formats the value using the given formatter.