pub struct CodeforcesProblem {
pub contest_id: u32,
pub index: String,
pub name: String,
pub rating: Option<u32>,
}
Fields§
§contest_id: u32
§index: String
§name: String
§rating: Option<u32>
Trait Implementations§
Source§impl Debug for CodeforcesProblem
impl Debug for CodeforcesProblem
Source§impl<'de> Deserialize<'de> for CodeforcesProblem
impl<'de> Deserialize<'de> for CodeforcesProblem
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 Ord for CodeforcesProblem
impl Ord for CodeforcesProblem
Source§fn cmp(&self, other: &CodeforcesProblem) -> Ordering
fn cmp(&self, other: &CodeforcesProblem) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CodeforcesProblem
impl PartialEq for CodeforcesProblem
Source§impl PartialOrd for CodeforcesProblem
impl PartialOrd for CodeforcesProblem
impl Eq for CodeforcesProblem
impl StructuralPartialEq for CodeforcesProblem
Auto Trait Implementations§
impl Freeze for CodeforcesProblem
impl RefUnwindSafe for CodeforcesProblem
impl Send for CodeforcesProblem
impl Sync for CodeforcesProblem
impl Unpin for CodeforcesProblem
impl UnwindSafe for CodeforcesProblem
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