Struct mailchimp_api::types::LandingPageSignup
source · pub struct LandingPageSignup {
pub activity_type: Option<LandingPageSignupActivityType>,
pub created_at_timestamp: Option<DateTime<Utc>>,
pub outreach_id: String,
pub outreach_title: String,
}
Expand description
Activity feed item to representing a contact signing up for the list via a landing page.
Fields
activity_type: Option<LandingPageSignupActivityType>
Activity feed item to representing a contact signing up for the list via a landing page.
created_at_timestamp: Option<DateTime<Utc>>
Activity feed item to representing a contact signing up for the list via a landing page.
outreach_id: String
Activity feed item to representing a contact signing up for the list via a landing page.
outreach_title: String
Activity feed item to representing a contact signing up for the list via a landing page.
Trait Implementations
sourceimpl Clone for LandingPageSignup
impl Clone for LandingPageSignup
sourcefn clone(&self) -> LandingPageSignup
fn clone(&self) -> LandingPageSignup
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 LandingPageSignup
impl Debug for LandingPageSignup
sourceimpl<'de> Deserialize<'de> for LandingPageSignup
impl<'de> Deserialize<'de> for LandingPageSignup
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 LandingPageSignup
impl JsonSchema for LandingPageSignup
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<LandingPageSignup> for LandingPageSignup
impl PartialEq<LandingPageSignup> for LandingPageSignup
sourcefn eq(&self, other: &LandingPageSignup) -> bool
fn eq(&self, other: &LandingPageSignup) -> bool
sourceimpl Serialize for LandingPageSignup
impl Serialize for LandingPageSignup
impl StructuralPartialEq for LandingPageSignup
Auto Trait Implementations
impl RefUnwindSafe for LandingPageSignup
impl Send for LandingPageSignup
impl Sync for LandingPageSignup
impl Unpin for LandingPageSignup
impl UnwindSafe for LandingPageSignup
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