pub struct PendingQuestion {
pub question_id: String,
pub question: String,
pub allow_free_text: bool,
pub options: Vec<String>,
}Fields§
§question_id: String§question: String§allow_free_text: bool§options: Vec<String>Trait Implementations§
Source§impl Clone for PendingQuestion
impl Clone for PendingQuestion
Source§impl Debug for PendingQuestion
impl Debug for PendingQuestion
impl Eq for PendingQuestion
Source§impl PartialEq for PendingQuestion
impl PartialEq for PendingQuestion
impl StructuralPartialEq for PendingQuestion
Auto Trait Implementations§
impl Freeze for PendingQuestion
impl RefUnwindSafe for PendingQuestion
impl Send for PendingQuestion
impl Sync for PendingQuestion
impl Unpin for PendingQuestion
impl UnsafeUnpin for PendingQuestion
impl UnwindSafe for PendingQuestion
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