[][src]Struct gitlab_butler_lib::entities::MergeRequestDetails

pub struct MergeRequestDetails {
    pub title: String,
    pub project_id: usize,
    pub iid: usize,
    pub work_in_progress: bool,
    pub author: User,
    pub merge_status: String,
    pub source_branch: String,
    pub target_branch: String,
    pub sha: Option<String>,
    pub rebase_in_progress: Option<bool>,
    pub merge_error: Option<String>,
    pub pipeline: Option<Pipeline>,
    pub diverged_commits_count: Option<i32>,
}

Fields

title: Stringproject_id: usizeiid: usizework_in_progress: boolauthor: Usermerge_status: Stringsource_branch: Stringtarget_branch: Stringsha: Option<String>rebase_in_progress: Option<bool>merge_error: Option<String>pipeline: Option<Pipeline>diverged_commits_count: Option<i32>

Trait Implementations

impl Debug for MergeRequestDetails[src]

impl<'de> Deserialize<'de> for MergeRequestDetails[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> 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.