Struct gitlab::types::RepoCommitStats [] [src]

pub struct RepoCommitStats {
    pub additions: u64,
    pub deletions: u64,
    pub total: u64,
}

Stats about a commit.

Fields

The number of lines added by the commit.

The number of lines deleted by the commit.

The number of lines changed by the commit.

Trait Implementations

impl Debug for RepoCommitStats
[src]

Formats the value using the given formatter.

impl Clone for RepoCommitStats
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for RepoCommitStats
[src]