pub struct OpenQuestion {
pub title: &'static str,
pub weight: f32,
pub assignment_text: &'static str,
pub expected_answer: &'static str,
pub checklist: Option<Checklist>,
}Fields§
§title: &'static str§weight: f32§assignment_text: &'static str§expected_answer: &'static str§checklist: Option<Checklist>Auto Trait Implementations§
impl Freeze for OpenQuestion
impl RefUnwindSafe for OpenQuestion
impl Send for OpenQuestion
impl Sync for OpenQuestion
impl Unpin for OpenQuestion
impl UnsafeUnpin for OpenQuestion
impl UnwindSafe for OpenQuestion
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