pub struct WebPullRequestResource {Show 24 fields
pub author: Option<Value>,
pub merge_style: Option<String>,
pub blocked_on: Option<String>,
pub updated_at: Option<String>,
pub status_check_commit_sha: Option<String>,
pub file_count: Option<i64>,
pub assignees: Option<Vec<Value>>,
pub head_repo_ref: Option<String>,
pub repo_slug: Option<String>,
pub customer_fields: Option<Vec<Value>>,
pub created_at: Option<String>,
pub number: Option<String>,
pub is_ready_for_merge: Option<bool>,
pub comment_count: Option<i64>,
pub commit_count: Option<i64>,
pub id: Option<String>,
pub is_merged: Option<bool>,
pub labels: Option<Vec<Value>>,
pub reviewers: Option<Vec<Value>>,
pub mergeable_state: Option<String>,
pub state: Option<String>,
pub title: Option<String>,
pub last_acted_at: Option<String>,
pub base_repo_ref: Option<String>,
}
Expand description
WebPullRequestResource 模型
Fields§
§merge_style: Option<String>
§blocked_on: Option<String>
§updated_at: Option<String>
§status_check_commit_sha: Option<String>
§file_count: Option<i64>
§assignees: Option<Vec<Value>>
§head_repo_ref: Option<String>
§repo_slug: Option<String>
§customer_fields: Option<Vec<Value>>
§created_at: Option<String>
§number: Option<String>
§is_ready_for_merge: Option<bool>
§comment_count: Option<i64>
§commit_count: Option<i64>
§id: Option<String>
§is_merged: Option<bool>
§labels: Option<Vec<Value>>
§reviewers: Option<Vec<Value>>
§mergeable_state: Option<String>
§state: Option<String>
§title: Option<String>
§last_acted_at: Option<String>
§base_repo_ref: Option<String>
Trait Implementations§
Source§impl Clone for WebPullRequestResource
impl Clone for WebPullRequestResource
Source§fn clone(&self) -> WebPullRequestResource
fn clone(&self) -> WebPullRequestResource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WebPullRequestResource
impl Debug for WebPullRequestResource
Source§impl<'de> Deserialize<'de> for WebPullRequestResource
impl<'de> Deserialize<'de> for WebPullRequestResource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WebPullRequestResource
impl RefUnwindSafe for WebPullRequestResource
impl Send for WebPullRequestResource
impl Sync for WebPullRequestResource
impl Unpin for WebPullRequestResource
impl UnwindSafe for WebPullRequestResource
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more