[][src]Struct google_consumersurveys2::Survey

pub struct Survey {
    pub owners: Option<Vec<String>>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub customer_data: Option<String>,
    pub state: Option<String>,
    pub audience: Option<SurveyAudience>,
    pub cost: Option<SurveyCost>,
    pub survey_url_id: Option<String>,
    pub questions: Option<Vec<SurveyQuestion>>,
    pub wanted_response_count: Option<i32>,
    pub rejection_reason: Option<SurveyRejection>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

owners: Option<Vec<String>>

no description provided

description: Option<String>

no description provided

title: Option<String>

no description provided

customer_data: Option<String>

no description provided

state: Option<String>

no description provided

audience: Option<SurveyAudience>

no description provided

cost: Option<SurveyCost>

no description provided

survey_url_id: Option<String>

no description provided

questions: Option<Vec<SurveyQuestion>>

no description provided

wanted_response_count: Option<i32>

no description provided

rejection_reason: Option<SurveyRejection>

no description provided

Trait Implementations

impl Clone for Survey[src]

impl Debug for Survey[src]

impl Default for Survey[src]

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

impl RequestValue for Survey[src]

impl Resource for Survey[src]

impl ResponseResult for Survey[src]

impl Serialize for Survey[src]

Auto Trait Implementations

impl RefUnwindSafe for Survey

impl Send for Survey

impl Sync for Survey

impl Unpin for Survey

impl UnwindSafe for Survey

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