pub struct ApiPullRequest {Show 17 fields
pub base: Option<Value>,
pub last_acted_at: Option<String>,
pub merged_by: Option<Value>,
pub author: Option<Value>,
pub repo: Option<Value>,
pub title: Option<String>,
pub updated_at: Option<String>,
pub assignees: Option<Vec<Value>>,
pub state: Option<String>,
pub head: Option<Value>,
pub is_wip: Option<bool>,
pub number: Option<String>,
pub review_count: Option<i64>,
pub comment_count: Option<i64>,
pub mergeable_state: Option<String>,
pub created_at: Option<String>,
pub blocked_on: Option<String>,
}
Expand description
ApiPullRequest 模型
Fields§
§base: Option<Value>
§last_acted_at: Option<String>
§merged_by: Option<Value>
§repo: Option<Value>
§title: Option<String>
§updated_at: Option<String>
§assignees: Option<Vec<Value>>
§state: Option<String>
§head: Option<Value>
§is_wip: Option<bool>
§number: Option<String>
§review_count: Option<i64>
§comment_count: Option<i64>
§mergeable_state: Option<String>
§created_at: Option<String>
§blocked_on: Option<String>
Trait Implementations§
Source§impl Clone for ApiPullRequest
impl Clone for ApiPullRequest
Source§fn clone(&self) -> ApiPullRequest
fn clone(&self) -> ApiPullRequest
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 ApiPullRequest
impl Debug for ApiPullRequest
Source§impl<'de> Deserialize<'de> for ApiPullRequest
impl<'de> Deserialize<'de> for ApiPullRequest
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 ApiPullRequest
impl RefUnwindSafe for ApiPullRequest
impl Send for ApiPullRequest
impl Sync for ApiPullRequest
impl Unpin for ApiPullRequest
impl UnwindSafe for ApiPullRequest
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