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