pub struct Question {
pub date: String,
pub title: String,
pub content: String,
pub choices: Vec<String>,
pub notebook: Option<String>,
pub answers: u32,
pub performance: f32,
pub answer: String,
pub explanation: String,
pub references: String,
}Fields§
§date: String§title: String§content: String§choices: Vec<String>§notebook: Option<String>§answers: u32§performance: f32§answer: String§explanation: String§references: StringTrait 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 Freeze for Question
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