Struct gitlab::webhooks::MergeRequestHookAttrs [−][src]
pub struct MergeRequestHookAttrs {}Show fields
pub source: Option<ProjectHookAttrs>, pub target: ProjectHookAttrs, pub last_commit: Option<CommitHookAttrs>, pub work_in_progress: bool, pub in_progress_merge_commit_sha: Option<ObjectId>, pub id: MergeRequestId, pub target_branch: String, pub target_project_id: ProjectId, pub source_branch: String, pub source_project_id: Option<ProjectId>, pub author_id: UserId, pub assignee_id: Option<UserId>, pub title: String, pub created_at: HookDate, pub updated_at: HookDate, pub deleted_at: Option<HookDate>, pub locked_at: Option<HookDate>, pub updated_by_id: Option<UserId>, pub merge_commit_sha: Option<ObjectId>, pub merge_error: Option<Value>, pub merge_params: MergeRequestParams, pub merge_user_id: Option<UserId>, pub merge_when_pipeline_succeeds: bool, pub milestone_id: Option<MilestoneId>, pub oldrev: Option<ObjectId>, pub state: MergeRequestState, pub merge_status: MergeStatus, pub iid: MergeRequestInternalId, pub description: Option<String>, pub head_pipeline_id: Option<PipelineId>, pub url: Option<String>, pub action: Option<MergeRequestAction>, pub time_estimate: u64, // some fields omitted
Merge request information exposed in hooks.
Fields
source: Option<ProjectHookAttrs>
The source project of the merge request.
If this is None
, the source repository has been deleted.
target: ProjectHookAttrs
The target project of the merge request.
last_commit: Option<CommitHookAttrs>
work_in_progress: bool
Whether the merge request is a work-in-progress or not.
in_progress_merge_commit_sha: Option<ObjectId>
The object ID of the merge commit which is currently being handled.
id: MergeRequestId
The ID of the merge request.
target_branch: String
The target branch of the merge request.
target_project_id: ProjectId
The ID of the target project.
source_branch: String
The source branch of the merge request.
source_project_id: Option<ProjectId>
The ID of the source project.
The ID of the author of the merge request.
assignee_id: Option<UserId>
The ID of the assignee of the merge request.
title: String
The title of the merge request.
created_at: HookDate
When the merge request was created.
updated_at: HookDate
When the merge request was last updated.
deleted_at: Option<HookDate>
When the merge request was deleted.
locked_at: Option<HookDate>
When the merge request was locked.
updated_by_id: Option<UserId>
The ID of the user which last updated the merge request.
merge_commit_sha: Option<ObjectId>
The object ID of the commit which merged the merge request.
merge_error: Option<Value>
merge_params: MergeRequestParams
The parameters for merging the merge request.
merge_user_id: Option<UserId>
The user which merged the merge request.
merge_when_pipeline_succeeds: bool
Whether the merge request will be merged once all builds succeed or not.
milestone_id: Option<MilestoneId>
The milestone of the merge request.
oldrev: Option<ObjectId>
state: MergeRequestState
The state of the merge request.
merge_status: MergeStatus
The merge status of the merge request.
iid: MergeRequestInternalId
The user-visible ID of the merge request.
description: Option<String>
The description of the merge request.
head_pipeline_id: Option<PipelineId>
The newest pipeline, if any
url: Option<String>
The URL of the merge request.
action: Option<MergeRequestAction>
The type of action which caused the hook.
time_estimate: u64
Trait Implementations
impl Clone for MergeRequestHookAttrs
[src]
impl Clone for MergeRequestHookAttrs
[src]fn clone(&self) -> MergeRequestHookAttrs
[src]
fn clone(&self) -> MergeRequestHookAttrs
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for MergeRequestHookAttrs
[src]
impl Debug for MergeRequestHookAttrs
[src]impl<'de> Deserialize<'de> for MergeRequestHookAttrs
[src]
impl<'de> Deserialize<'de> for MergeRequestHookAttrs
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl Serialize for MergeRequestHookAttrs
[src]
impl Serialize for MergeRequestHookAttrs
[src]Auto Trait Implementations
impl RefUnwindSafe for MergeRequestHookAttrs
impl Send for MergeRequestHookAttrs
impl Sync for MergeRequestHookAttrs
impl Unpin for MergeRequestHookAttrs
impl UnwindSafe for MergeRequestHookAttrs
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,