Struct mailchimp_api::types::GenericSignup
source · pub struct GenericSignup {
pub activity_type: Option<GenericSignupActivityType>,
pub created_at_timestamp: Option<DateTime<Utc>>,
pub signup_category: String,
}
Expand description
Activity feed item that represents a contact signing up for the audience via a generic some generic method (specifically, one we can’t link to).
Fields
activity_type: Option<GenericSignupActivityType>
Activity feed item that represents a contact signing up for the audience via a generic some generic method (specifically, one we can’t link to).
created_at_timestamp: Option<DateTime<Utc>>
Activity feed item that represents a contact signing up for the audience via a generic some generic method (specifically, one we can’t link to).
signup_category: String
Activity feed item that represents a contact signing up for the audience via a generic some generic method (specifically, one we can’t link to).
Trait Implementations
sourceimpl Clone for GenericSignup
impl Clone for GenericSignup
sourcefn clone(&self) -> GenericSignup
fn clone(&self) -> GenericSignup
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 GenericSignup
impl Debug for GenericSignup
sourceimpl<'de> Deserialize<'de> for GenericSignup
impl<'de> Deserialize<'de> for GenericSignup
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 GenericSignup
impl JsonSchema for GenericSignup
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<GenericSignup> for GenericSignup
impl PartialEq<GenericSignup> for GenericSignup
sourcefn eq(&self, other: &GenericSignup) -> bool
fn eq(&self, other: &GenericSignup) -> bool
sourceimpl Serialize for GenericSignup
impl Serialize for GenericSignup
impl StructuralPartialEq for GenericSignup
Auto Trait Implementations
impl RefUnwindSafe for GenericSignup
impl Send for GenericSignup
impl Sync for GenericSignup
impl Unpin for GenericSignup
impl UnwindSafe for GenericSignup
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