Struct g_rust::extension::parsers::subparsers::PollQuestion
source · 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 copy 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<PollQuestion> for PollQuestion
impl PartialEq<PollQuestion> for PollQuestion
source§fn eq(&self, other: &PollQuestion) -> bool
fn eq(&self, other: &PollQuestion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PollQuestion
Auto Trait Implementations§
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