[][src]Struct gitlab::webhooks::PipelineMergeRequestAttrs

pub struct PipelineMergeRequestAttrs {
    pub id: MergeRequestId,
    pub iid: MergeRequestInternalId,
    pub title: String,
    pub target_branch: String,
    pub target_project_id: ProjectId,
    pub source_branch: String,
    pub source_project_id: Option<ProjectId>,
    pub state: MergeRequestState,
    pub merge_status: MergeStatus,
    pub url: String,
}

Fields

id: MergeRequestIdiid: MergeRequestInternalIdtitle: String

The title 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.

state: MergeRequestStatemerge_status: MergeStatusurl: String

Trait Implementations

impl Clone for PipelineMergeRequestAttrs[src]

impl Debug for PipelineMergeRequestAttrs[src]

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

impl Serialize for PipelineMergeRequestAttrs[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.