[][src]Struct google_consumersurveys2::SurveyQuestion

pub struct SurveyQuestion {
    pub must_pick_suggestion: Option<bool>,
    pub threshold_answers: Option<Vec<String>>,
    pub num_stars: Option<String>,
    pub low_value_label: Option<String>,
    pub video_id: Option<String>,
    pub answers: Option<Vec<String>>,
    pub has_other: Option<bool>,
    pub images: Option<Vec<SurveyQuestionImage>>,
    pub unit_of_measurement_label: Option<String>,
    pub last_answer_position_pinned: Option<bool>,
    pub open_text_suggestions: Option<Vec<String>>,
    pub high_value_label: Option<String>,
    pub question: Option<String>,
    pub sentiment_text: Option<String>,
    pub single_line_response: Option<bool>,
    pub type_: Option<String>,
    pub answer_order: Option<String>,
    pub open_text_placeholder: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

must_pick_suggestion: Option<bool>

no description provided

threshold_answers: Option<Vec<String>>

no description provided

num_stars: Option<String>

no description provided

low_value_label: Option<String>

no description provided

video_id: Option<String>

no description provided

answers: Option<Vec<String>>

no description provided

has_other: Option<bool>

no description provided

images: Option<Vec<SurveyQuestionImage>>

no description provided

unit_of_measurement_label: Option<String>

no description provided

last_answer_position_pinned: Option<bool>

no description provided

open_text_suggestions: Option<Vec<String>>

no description provided

high_value_label: Option<String>

no description provided

question: Option<String>

no description provided

sentiment_text: Option<String>

no description provided

single_line_response: Option<bool>

no description provided

type_: Option<String>

no description provided

answer_order: Option<String>

no description provided

open_text_placeholder: Option<String>

no description provided

Trait Implementations

impl Clone for SurveyQuestion[src]

impl Debug for SurveyQuestion[src]

impl Default for SurveyQuestion[src]

impl<'de> Deserialize<'de> for SurveyQuestion[src]

impl Part for SurveyQuestion[src]

impl Serialize for SurveyQuestion[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any