Struct mailchimp_api::types::SubscriberListData
source · pub struct SubscriberListData {
pub campaign_defaults: SubscriberListCampaignDefaults,
pub contact: SubscriberListContactData,
pub double_optin: bool,
pub email_type_option: bool,
pub marketing_permissions: bool,
pub name: String,
pub notify_on_subscribe: String,
pub notify_on_unsubscribe: String,
pub permission_reminder: String,
pub use_archive_bar: bool,
}
Expand description
Information about a specific list.
Fields
campaign_defaults: SubscriberListCampaignDefaults
Default values for campaigns created for this list.
contact: SubscriberListContactData
Contact information displayed in campaign footers to comply with international spam laws.
double_optin: bool
Information about a specific list.
email_type_option: bool
Whether the webhook is triggered when a list subscriber is added.
marketing_permissions: bool
Information about a specific list.
name: String
The name of the folder.
notify_on_subscribe: String
Information about a specific list.
notify_on_unsubscribe: String
Information about a specific list.
permission_reminder: String
The name of the folder.
use_archive_bar: bool
Information about a specific list.
Trait Implementations
sourceimpl Clone for SubscriberListData
impl Clone for SubscriberListData
sourcefn clone(&self) -> SubscriberListData
fn clone(&self) -> SubscriberListData
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 SubscriberListData
impl Debug for SubscriberListData
sourceimpl<'de> Deserialize<'de> for SubscriberListData
impl<'de> Deserialize<'de> for SubscriberListData
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 SubscriberListData
impl JsonSchema for SubscriberListData
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<SubscriberListData> for SubscriberListData
impl PartialEq<SubscriberListData> for SubscriberListData
sourcefn eq(&self, other: &SubscriberListData) -> bool
fn eq(&self, other: &SubscriberListData) -> bool
sourceimpl Serialize for SubscriberListData
impl Serialize for SubscriberListData
impl StructuralPartialEq for SubscriberListData
Auto Trait Implementations
impl RefUnwindSafe for SubscriberListData
impl Send for SubscriberListData
impl Sync for SubscriberListData
impl Unpin for SubscriberListData
impl UnwindSafe for SubscriberListData
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