pub struct CFRatingChange {
pub contest_id: i64,
pub contest_name: String,
pub handle: String,
pub rank: i64,
pub rating_update_time_seconds: i64,
pub old_rating: i64,
pub new_rating: i64,
}
Expand description
Struct representing a Codeforces rating change.
Fields§
§contest_id: i64
§contest_name: String
§handle: String
§rank: i64
§rating_update_time_seconds: i64
§old_rating: i64
§new_rating: i64
Trait Implementations§
Source§impl Clone for CFRatingChange
impl Clone for CFRatingChange
Source§fn clone(&self) -> CFRatingChange
fn clone(&self) -> CFRatingChange
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 CFRatingChange
impl Debug for CFRatingChange
Source§impl<'de> Deserialize<'de> for CFRatingChange
impl<'de> Deserialize<'de> for CFRatingChange
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
Source§impl PartialEq for CFRatingChange
impl PartialEq for CFRatingChange
Source§impl Serialize for CFRatingChange
impl Serialize for CFRatingChange
impl Eq for CFRatingChange
impl StructuralPartialEq for CFRatingChange
Auto Trait Implementations§
impl Freeze for CFRatingChange
impl RefUnwindSafe for CFRatingChange
impl Send for CFRatingChange
impl Sync for CFRatingChange
impl Unpin for CFRatingChange
impl UnwindSafe for CFRatingChange
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.