pub struct Problem {
pub number: u32,
pub id: Box<str>,
pub title: Box<str>,
pub statement: Box<str>,
}Fields§
§number: u32§id: Box<str>§title: Box<str>§statement: Box<str>Problem statement in the HTML format returned by LeetCode
Trait Implementations§
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