[][src]Struct gitlab::types::RepoCommit

pub struct RepoCommit {
    pub id: ObjectId,
    pub short_id: ObjectId,
    pub title: String,
    pub parent_ids: Vec<ObjectId>,
    pub author_name: String,
    pub author_email: String,
    pub authored_date: DateTime<Utc>,
    pub committer_name: String,
    pub committer_email: String,
    pub committed_date: DateTime<Utc>,
    pub created_at: DateTime<Utc>,
    pub message: String,
}

A commit in a project.

Fields

id: ObjectId

The ID of the commit.

short_id: ObjectId

The short ID of the commit.

title: String

The summary of the commit.

parent_ids: Vec<ObjectId>

The commit ID of the parents of the commit.

author_name: String

The commit author's name.

author_email: String

The commit author's email address.

authored_date: DateTime<Utc>

The commit's authorship date.

committer_name: String

The committer's name.

committer_email: String

The committer's email address.

committed_date: DateTime<Utc>

The commit's commit date.

created_at: DateTime<Utc>message: String

The full commit message.

Trait Implementations

impl Clone for RepoCommit[src]

impl Debug for RepoCommit[src]

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

impl Serialize for RepoCommit[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.