pub struct GitChangeSet {
    pub comment: String,
    pub author_email: String,
    pub commit_id: String,
    pub date: String,
    pub msg: String,
    pub timestamp: u64,
    pub id: String,
    pub affected_paths: Vec<String>,
    pub author: ShortUser,
    pub paths: Vec<PathChange>,
}
Expand description

Changes found from git

Fields§

§comment: String

Comment

§author_email: String

Email of the commit

§commit_id: String

ID of the commit

§date: String

Date of the commit

§msg: String

Commit message

§timestamp: u64

Timestamp of the commit

§id: String

ID of the commit

§affected_paths: Vec<String>

Files changed in the commit

§author: ShortUser

Author of the commit

§paths: Vec<PathChange>

Files changed in the commit, and how

Trait Implementations§

Should reply the _class provided by Jenkins for a type
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.