pub struct PollQuestion {
pub question_id: LegacyId,
pub sort_order: i32,
pub question_type: i32,
pub question_text: String,
pub question_category: i32,
pub question_answer_type: i32,
pub question_answer_count: LegacyLength,
pub question_choices: Vec<PollChoice>,
pub children: Vec<PollQuestion>,
}
Fields§
§question_id: LegacyId
§sort_order: i32
§question_type: i32
§question_text: String
§question_category: i32
§question_answer_type: i32
§question_answer_count: LegacyLength
§question_choices: Vec<PollChoice>
§children: Vec<PollQuestion>
Trait Implementations§
Source§impl Clone for PollQuestion
impl Clone for PollQuestion
Source§fn clone(&self) -> PollQuestion
fn clone(&self) -> PollQuestion
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PollQuestion
impl Debug for PollQuestion
Source§impl Default for PollQuestion
impl Default for PollQuestion
Source§fn default() -> PollQuestion
fn default() -> PollQuestion
Returns the “default value” for a type. Read more
Source§impl PacketVariable for PollQuestion
impl PacketVariable for PollQuestion
Source§impl PartialEq for PollQuestion
impl PartialEq for PollQuestion
impl StructuralPartialEq for PollQuestion
Auto Trait Implementations§
impl Freeze for PollQuestion
impl RefUnwindSafe for PollQuestion
impl Send for PollQuestion
impl Sync for PollQuestion
impl Unpin for PollQuestion
impl UnwindSafe for PollQuestion
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