Struct mailchimp_api::types::SubscriberList
source · pub struct SubscriberList {
pub campaign_defaults: SubscriberListCampaignDefaults,
pub contact: SubscriberListContact,
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: SubscriberListContact
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 SubscriberList
impl Clone for SubscriberList
sourcefn clone(&self) -> SubscriberList
fn clone(&self) -> SubscriberList
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 SubscriberList
impl Debug for SubscriberList
sourceimpl<'de> Deserialize<'de> for SubscriberList
impl<'de> Deserialize<'de> for SubscriberList
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 SubscriberList
impl JsonSchema for SubscriberList
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<SubscriberList> for SubscriberList
impl PartialEq<SubscriberList> for SubscriberList
sourcefn eq(&self, other: &SubscriberList) -> bool
fn eq(&self, other: &SubscriberList) -> bool
sourceimpl Serialize for SubscriberList
impl Serialize for SubscriberList
impl StructuralPartialEq for SubscriberList
Auto Trait Implementations
impl RefUnwindSafe for SubscriberList
impl Send for SubscriberList
impl Sync for SubscriberList
impl Unpin for SubscriberList
impl UnwindSafe for SubscriberList
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