[][src]Struct gitlab_butler_lib::entities::CreateMergeRequest

pub struct CreateMergeRequest {
    pub project_id: String,
    pub source_branch: String,
    pub target_branch: String,
    pub title: String,
    pub milestone_id: Option<usize>,
    pub description: Option<String>,
    pub assignee_ids: Vec<usize>,
    pub labels: Option<String>,
}

Fields

project_id: Stringsource_branch: Stringtarget_branch: Stringtitle: Stringmilestone_id: Option<usize>description: Option<String>assignee_ids: Vec<usize>labels: Option<String>

Comma separated

Trait Implementations

impl Debug for CreateMergeRequest[src]

impl Default for CreateMergeRequest[src]

impl Serialize for CreateMergeRequest[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.