pub struct CFRanklistRow {
pub party: CFParty,
pub rank: i64,
pub points: f64,
pub penalty: i64,
pub successful_hack_count: i64,
pub unsuccessful_hack_count: i64,
pub problem_results: Vec<CFProblemResult>,
pub last_submission_time_seconds: Option<i64>,
}
Expand description
Struct representing a Codeforces ranklist row.
Fields§
§party: CFParty
§rank: i64
§points: f64
§penalty: i64
§successful_hack_count: i64
§unsuccessful_hack_count: i64
§problem_results: Vec<CFProblemResult>
§last_submission_time_seconds: Option<i64>
Trait Implementations§
Source§impl Clone for CFRanklistRow
impl Clone for CFRanklistRow
Source§fn clone(&self) -> CFRanklistRow
fn clone(&self) -> CFRanklistRow
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 CFRanklistRow
impl Debug for CFRanklistRow
Source§impl<'de> Deserialize<'de> for CFRanklistRow
impl<'de> Deserialize<'de> for CFRanklistRow
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 CFRanklistRow
impl PartialEq for CFRanklistRow
Source§impl Serialize for CFRanklistRow
impl Serialize for CFRanklistRow
impl StructuralPartialEq for CFRanklistRow
Auto Trait Implementations§
impl Freeze for CFRanklistRow
impl RefUnwindSafe for CFRanklistRow
impl Send for CFRanklistRow
impl Sync for CFRanklistRow
impl Unpin for CFRanklistRow
impl UnwindSafe for CFRanklistRow
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