pub struct Problem {
pub contest_id: u32,
pub index: Box<str>,
pub title: Box<str>,
pub rating: Option<u16>,
pub tags: Vec<Box<str>>,
pub solved_count: Option<u32>,
pub url: Box<str>,
pub statement: Option<Box<str>>,
}Fields§
§contest_id: u32§index: Box<str>§title: Box<str>§rating: Option<u16>§solved_count: Option<u32>§url: Box<str>§statement: Option<Box<str>>Codeforces does not expose statements through its public API
Trait Implementations§
impl Eq for Problem
impl StructuralPartialEq for Problem
Auto Trait Implementations§
impl Freeze for Problem
impl RefUnwindSafe for Problem
impl Send for Problem
impl Sync for Problem
impl Unpin for Problem
impl UnsafeUnpin for Problem
impl UnwindSafe for Problem
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