Struct gitlab_api::merge_requests::MergeRequest [] [src]

pub struct MergeRequest {
    pub id: i64,
    pub iid: i64,
    pub project_id: i64,
    pub title: String,
    pub description: String,
    pub state: State,
    pub created_at: String,
    pub updated_at: String,
    pub target_branch: String,
    pub source_branch: String,
    pub upvotes: i64,
    pub downvotes: i64,
    pub author: User,
    pub assignee: Option<User>,
    pub source_project_id: i64,
    pub target_project_id: i64,
    pub labels: Vec<String>,
    pub work_in_progress: bool,
    pub milestone: Option<Milestone>,
    pub merge_when_build_succeeds: bool,
    pub merge_status: Status,
    pub sha: Option<String>,
    pub merge_commit_sha: Option<String>,
    pub subscribed: bool,
    pub user_notes_count: i64,
    pub should_remove_source_branch: Option<bool>,
    pub force_remove_source_branch: Option<bool>,
    pub web_url: String,
}

Fields

Trait Implementations

impl Debug for MergeRequest
[src]

Formats the value using the given formatter.