pub struct AccountStats {
pub username: Box<str>,
pub solved: DifficultyCounts,
pub accepted_submissions: DifficultyCounts,
pub submissions: DifficultyCounts,
pub recent_submissions: Vec<RecentSubmission>,
pub has_more_submissions: bool,
}Fields§
§username: Box<str>§solved: DifficultyCounts§accepted_submissions: DifficultyCounts§submissions: DifficultyCounts§recent_submissions: Vec<RecentSubmission>§has_more_submissions: boolTrait Implementations§
Source§impl Debug for AccountStats
impl Debug for AccountStats
impl Eq for AccountStats
Source§impl PartialEq for AccountStats
impl PartialEq for AccountStats
impl StructuralPartialEq for AccountStats
Auto Trait Implementations§
impl Freeze for AccountStats
impl RefUnwindSafe for AccountStats
impl Send for AccountStats
impl Sync for AccountStats
impl Unpin for AccountStats
impl UnsafeUnpin for AccountStats
impl UnwindSafe for AccountStats
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