Struct leetcode_tui_rs::deserializers::editor_data::Question
source · pub struct Question {
pub question_id: String,
pub question_frontend_id: String,
pub code_snippets: Vec<CodeSnippet>,
pub title_slug: String,
pub enable_run_code: bool,
}
Fields§
§question_id: String
§question_frontend_id: String
§code_snippets: Vec<CodeSnippet>
§title_slug: String
§enable_run_code: bool
Trait Implementations§
source§impl<'de> Deserialize<'de> for Question
impl<'de> Deserialize<'de> for Question
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
Auto Trait Implementations§
impl RefUnwindSafe for Question
impl Send for Question
impl Sync for Question
impl Unpin for Question
impl UnwindSafe for Question
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