pub struct CFContestStandings {
pub contest: CFContest,
pub problems: Vec<CFProblem>,
pub rows: Vec<CFRanklistRow>,
}
Expand description
Struct representing the object returned by a
contest.standings
request.
Fields§
§contest: CFContest
§problems: Vec<CFProblem>
§rows: Vec<CFRanklistRow>
Trait Implementations§
Source§impl Clone for CFContestStandings
impl Clone for CFContestStandings
Source§fn clone(&self) -> CFContestStandings
fn clone(&self) -> CFContestStandings
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 CFContestStandings
impl Debug for CFContestStandings
Source§impl<'de> Deserialize<'de> for CFContestStandings
impl<'de> Deserialize<'de> for CFContestStandings
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 CFContestStandings
impl PartialEq for CFContestStandings
Source§impl Serialize for CFContestStandings
impl Serialize for CFContestStandings
impl StructuralPartialEq for CFContestStandings
Auto Trait Implementations§
impl Freeze for CFContestStandings
impl RefUnwindSafe for CFContestStandings
impl Send for CFContestStandings
impl Sync for CFContestStandings
impl Unpin for CFContestStandings
impl UnwindSafe for CFContestStandings
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