pub struct PullRequestStats {
pub awaiting_review: u32,
pub open: u32,
pub mentions: u32,
}Fields§
§awaiting_review: u32§open: u32§mentions: u32Trait Implementations§
Source§impl Clone for PullRequestStats
impl Clone for PullRequestStats
Source§fn clone(&self) -> PullRequestStats
fn clone(&self) -> PullRequestStats
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 PullRequestStats
impl Debug for PullRequestStats
Source§impl Default for PullRequestStats
impl Default for PullRequestStats
Source§fn default() -> PullRequestStats
fn default() -> PullRequestStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequestStats
impl<'de> Deserialize<'de> for PullRequestStats
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 PullRequestStats
impl RefUnwindSafe for PullRequestStats
impl Send for PullRequestStats
impl Sync for PullRequestStats
impl Unpin for PullRequestStats
impl UnwindSafe for PullRequestStats
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