pub struct RatingChange {
pub contest_id: u32,
pub contest_name: Box<str>,
pub rank: u32,
pub old_rating: i32,
pub new_rating: i32,
pub rating_update_time_seconds: i64,
}Expand description
One change in a user’s Codeforces rating history
Fields§
§contest_id: u32§contest_name: Box<str>§rank: u32§old_rating: i32§new_rating: i32§rating_update_time_seconds: i64Trait Implementations§
Source§impl Debug for RatingChange
impl Debug for RatingChange
impl Eq for RatingChange
Source§impl PartialEq for RatingChange
impl PartialEq for RatingChange
impl StructuralPartialEq for RatingChange
Auto Trait Implementations§
impl Freeze for RatingChange
impl RefUnwindSafe for RatingChange
impl Send for RatingChange
impl Sync for RatingChange
impl Unpin for RatingChange
impl UnsafeUnpin for RatingChange
impl UnwindSafe for RatingChange
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