pub struct UserStats {
pub handle: Box<str>,
pub name: Box<str>,
pub solved: u32,
pub rating: Option<u32>,
pub highest_rating: Option<u32>,
pub contests: Option<u32>,
pub url: Box<str>,
}Expand description
Public fields rendered on a CodeChef user profile
Fields§
§handle: Box<str>§name: Box<str>§solved: u32§rating: Option<u32>§highest_rating: Option<u32>§contests: Option<u32>§url: Box<str>Trait Implementations§
impl Eq for UserStats
impl StructuralPartialEq for UserStats
Auto Trait Implementations§
impl Freeze for UserStats
impl RefUnwindSafe for UserStats
impl Send for UserStats
impl Sync for UserStats
impl Unpin for UserStats
impl UnsafeUnpin 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