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