Struct mailchimp_api::types::Subscribers
source · pub struct Subscribers {
pub links: Vec<Links>,
pub email_address: String,
pub id: String,
pub list_id: String,
pub workflow_id: String,
}
Expand description
A summary of a subscriber removed from an Automation workflow.
Fields
links: Vec<Links>
A summary of a subscriber removed from an Automation workflow.
email_address: String
A summary of a subscriber removed from an Automation workflow.
id: String
A summary of a subscriber removed from an Automation workflow.
list_id: String
A summary of a subscriber removed from an Automation workflow.
workflow_id: String
A summary of a subscriber removed from an Automation workflow.
Trait Implementations
sourceimpl Clone for Subscribers
impl Clone for Subscribers
sourcefn clone(&self) -> Subscribers
fn clone(&self) -> Subscribers
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 Subscribers
impl Debug for Subscribers
sourceimpl<'de> Deserialize<'de> for Subscribers
impl<'de> Deserialize<'de> for Subscribers
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 Subscribers
impl JsonSchema for Subscribers
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<Subscribers> for Subscribers
impl PartialEq<Subscribers> for Subscribers
sourcefn eq(&self, other: &Subscribers) -> bool
fn eq(&self, other: &Subscribers) -> bool
sourceimpl Serialize for Subscribers
impl Serialize for Subscribers
impl StructuralPartialEq for Subscribers
Auto Trait Implementations
impl RefUnwindSafe for Subscribers
impl Send for Subscribers
impl Sync for Subscribers
impl Unpin for Subscribers
impl UnwindSafe for Subscribers
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