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