pub struct Interview {
pub sections: Vec<Question>,
pub prelude: Option<String>,
pub epilogue: Option<String>,
}Expand description
A sequence of sections, which contain questions.
Fields§
§sections: Vec<Question>§prelude: Option<String>§epilogue: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Interview
impl RefUnwindSafe for Interview
impl Send for Interview
impl Sync for Interview
impl Unpin for Interview
impl UnwindSafe for Interview
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