Struct mailchimp_api::types::PromoCodesData
source · pub struct PromoCodesData {
pub links: Vec<Links>,
pub promo_codes: Vec<PromoCodes>,
pub store_id: String,
pub total_items: i64,
}
Expand description
A collection of the store’s promo codes.
Fields
links: Vec<Links>
A collection of the store’s promo codes.
promo_codes: Vec<PromoCodes>
A collection of the store’s promo codes.
store_id: String
A collection of the store’s promo codes.
total_items: i64
A collection of the store’s promo codes.
Trait Implementations
sourceimpl Clone for PromoCodesData
impl Clone for PromoCodesData
sourcefn clone(&self) -> PromoCodesData
fn clone(&self) -> PromoCodesData
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 PromoCodesData
impl Debug for PromoCodesData
sourceimpl<'de> Deserialize<'de> for PromoCodesData
impl<'de> Deserialize<'de> for PromoCodesData
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 PromoCodesData
impl JsonSchema for PromoCodesData
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<PromoCodesData> for PromoCodesData
impl PartialEq<PromoCodesData> for PromoCodesData
sourcefn eq(&self, other: &PromoCodesData) -> bool
fn eq(&self, other: &PromoCodesData) -> bool
sourceimpl Serialize for PromoCodesData
impl Serialize for PromoCodesData
impl StructuralPartialEq for PromoCodesData
Auto Trait Implementations
impl RefUnwindSafe for PromoCodesData
impl Send for PromoCodesData
impl Sync for PromoCodesData
impl Unpin for PromoCodesData
impl UnwindSafe for PromoCodesData
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