pub struct PullRequestSummary {
pub number: u32,
pub merged_at: Option<String>,
pub user: PrUser,
}Expand description
A pull request summary (from commits/{sha}/pulls).
Fields§
§number: u32§merged_at: Option<String>§user: PrUserTrait Implementations§
Source§impl Clone for PullRequestSummary
impl Clone for PullRequestSummary
Source§fn clone(&self) -> PullRequestSummary
fn clone(&self) -> PullRequestSummary
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 PullRequestSummary
impl Debug for PullRequestSummary
Source§impl<'de> Deserialize<'de> for PullRequestSummary
impl<'de> Deserialize<'de> for PullRequestSummary
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 PullRequestSummary
impl RefUnwindSafe for PullRequestSummary
impl Send for PullRequestSummary
impl Sync for PullRequestSummary
impl Unpin for PullRequestSummary
impl UnsafeUnpin for PullRequestSummary
impl UnwindSafe for PullRequestSummary
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