Struct mailchimp_api::types::SubscriberLists
source · pub struct SubscriberLists {
pub links: Vec<Links>,
pub constraints: Option<Constraints>,
pub lists: Vec<Lists>,
pub total_items: i64,
}
Expand description
A collection of subscriber lists for this account. Lists contain subscribers who have opted-in to receive correspondence from you or your organization.
Fields
links: Vec<Links>
A collection of subscriber lists for this account. Lists contain subscribers who have opted-in to receive correspondence from you or your organization.
constraints: Option<Constraints>
A collection of subscriber lists for this account. Lists contain subscribers who have opted-in to receive correspondence from you or your organization.
lists: Vec<Lists>
An array of objects, each representing a list.
total_items: i64
A collection of subscriber lists for this account. Lists contain subscribers who have opted-in to receive correspondence from you or your organization.
Trait Implementations
sourceimpl Clone for SubscriberLists
impl Clone for SubscriberLists
sourcefn clone(&self) -> SubscriberLists
fn clone(&self) -> SubscriberLists
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 SubscriberLists
impl Debug for SubscriberLists
sourceimpl<'de> Deserialize<'de> for SubscriberLists
impl<'de> Deserialize<'de> for SubscriberLists
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 SubscriberLists
impl JsonSchema for SubscriberLists
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<SubscriberLists> for SubscriberLists
impl PartialEq<SubscriberLists> for SubscriberLists
sourcefn eq(&self, other: &SubscriberLists) -> bool
fn eq(&self, other: &SubscriberLists) -> bool
sourceimpl Serialize for SubscriberLists
impl Serialize for SubscriberLists
impl StructuralPartialEq for SubscriberLists
Auto Trait Implementations
impl RefUnwindSafe for SubscriberLists
impl Send for SubscriberLists
impl Sync for SubscriberLists
impl Unpin for SubscriberLists
impl UnwindSafe for SubscriberLists
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