Struct mailchimp_api::types::SurveyResponse
source · pub struct SurveyResponse {
pub activity_type: Option<SurveyResponseActivityType>,
pub created_at_timestamp: Option<DateTime<Utc>>,
pub survey_id: String,
pub survey_title: String,
}
Expand description
Represents when a contact completes and submits a survey
Fields
activity_type: Option<SurveyResponseActivityType>
Represents when a contact completes and submits a survey
created_at_timestamp: Option<DateTime<Utc>>
Represents when a contact completes and submits a survey
survey_id: String
Represents when a contact completes and submits a survey
survey_title: String
Represents when a contact completes and submits a survey
Trait Implementations
sourceimpl Clone for SurveyResponse
impl Clone for SurveyResponse
sourcefn clone(&self) -> SurveyResponse
fn clone(&self) -> SurveyResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SurveyResponse
impl Debug for SurveyResponse
sourceimpl<'de> Deserialize<'de> for SurveyResponse
impl<'de> Deserialize<'de> for SurveyResponse
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for SurveyResponse
impl JsonSchema for SurveyResponse
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresourceimpl PartialEq<SurveyResponse> for SurveyResponse
impl PartialEq<SurveyResponse> for SurveyResponse
sourcefn eq(&self, other: &SurveyResponse) -> bool
fn eq(&self, other: &SurveyResponse) -> bool
sourceimpl Serialize for SurveyResponse
impl Serialize for SurveyResponse
impl StructuralPartialEq for SurveyResponse
Auto Trait Implementations
impl RefUnwindSafe for SurveyResponse
impl Send for SurveyResponse
impl Sync for SurveyResponse
impl Unpin for SurveyResponse
impl UnwindSafe for SurveyResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more