pub struct UserStats {
pub total_stars: u32,
pub total_forks: u32,
pub total_repos: u32,
pub languages: HashMap<String, f64>,
pub contribution_graph: Value,
pub current_streak: u32,
pub longest_streak: u32,
pub total_contributions: u32,
pub pull_requests: PullRequestStats,
pub issues: IssueStats,
}Fields§
§total_stars: u32§total_forks: u32§total_repos: u32§languages: HashMap<String, f64>§contribution_graph: Value§current_streak: u32§longest_streak: u32§total_contributions: u32§pull_requests: PullRequestStats§issues: IssueStatsTrait Implementations§
Source§impl<'de> Deserialize<'de> for UserStats
impl<'de> Deserialize<'de> for UserStats
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 UserStats
impl RefUnwindSafe for UserStats
impl Send for UserStats
impl Sync for UserStats
impl Unpin for UserStats
impl UnwindSafe for UserStats
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