Struct gitlab::types::RepoCommitDetail [] [src]

pub struct RepoCommitDetail {
    pub id: ObjectId,
    pub short_id: ObjectId,
    pub title: String,
    pub author_name: String,
    pub author_email: String,
    pub created_at: DateTime<UTC>,
    pub message: String,
    pub parent_ids: Vec<ObjectId>,
    pub committed_date: DateTime<UTC>,
    pub authored_date: DateTime<UTC>,
    pub stats: RepoCommitStats,
    // some fields omitted
}

A commit in a project with statistics.

Fields

The ID of the commit.

The short ID of the commit.

The summary of the commit.

The commit author's name.

The commit author's email address.

The full commit message.

The commit ID of the parents of the commit.

The commit's commit date.

The commit's authorship date.

Statistics about the commit.

Trait Implementations

impl Debug for RepoCommitDetail
[src]

Formats the value using the given formatter.

impl Clone for RepoCommitDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more