[][src]Struct jenkins_api::changeset::GitChangeSet

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>,
}

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

impl ChangeSet for GitChangeSet[src]

impl Class for GitChangeSet[src]

impl Debug for GitChangeSet[src]

impl<'de> Deserialize<'de> for GitChangeSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.