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
id: String
sha: ObjectId
The object ID of the commit.
message: String
The full commit message.
The commit's author's name.
The commit's author's email address.
status: String
duration: u64
started_at: Option<HookDate>
When the build started.
finished_at: Option<HookDate>
When the build completed.
Trait Implementations
impl Debug for BuildCommitHookAttrs[src]
impl Clone for BuildCommitHookAttrs[src]
fn clone(&self) -> BuildCommitHookAttrs[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more