Struct gitlab::webhooks::BuildCommitHookAttrs [] [src]

pub struct BuildCommitHookAttrs {
    pub id: String,
    pub sha: ObjectId,
    pub message: String,
    pub author_name: String,
    pub author_email: String,
    pub status: String,
    pub duration: u64,
    pub started_at: Option<HookDate>,
    pub finished_at: Option<HookDate>,
}

Build commit information exposed in hooks.

Fields

The object ID of the commit.

The full commit message.

The commit's author's name.

The commit's author's email address.

When the build started.

When the build completed.

Trait Implementations

impl Debug for BuildCommitHookAttrs
[src]

Formats the value using the given formatter.

impl Clone for BuildCommitHookAttrs
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more