Struct mailchimp_api::types::ECommerceStoreData
source · pub struct ECommerceStoreData {
pub address: Option<ECommerceStoresAddress>,
pub currency_code: String,
pub domain: String,
pub email_address: String,
pub is_syncing: bool,
pub money_format: String,
pub name: String,
pub phone: String,
pub platform: String,
pub primary_locale: String,
pub timezone: String,
}
Expand description
An individual store in an account.
Fields
address: Option<ECommerceStoresAddress>
An individual store in an account.
currency_code: String
An individual store in an account.
domain: String
An individual store in an account.
email_address: String
An individual store in an account.
is_syncing: bool
An individual store in an account.
money_format: String
An individual store in an account.
name: String
An individual store in an account.
phone: String
An individual store in an account.
platform: String
An individual store in an account.
primary_locale: String
An individual store in an account.
timezone: String
An individual store in an account.
Trait Implementations
sourceimpl Clone for ECommerceStoreData
impl Clone for ECommerceStoreData
sourcefn clone(&self) -> ECommerceStoreData
fn clone(&self) -> ECommerceStoreData
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 ECommerceStoreData
impl Debug for ECommerceStoreData
sourceimpl<'de> Deserialize<'de> for ECommerceStoreData
impl<'de> Deserialize<'de> for ECommerceStoreData
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 ECommerceStoreData
impl JsonSchema for ECommerceStoreData
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<ECommerceStoreData> for ECommerceStoreData
impl PartialEq<ECommerceStoreData> for ECommerceStoreData
sourcefn eq(&self, other: &ECommerceStoreData) -> bool
fn eq(&self, other: &ECommerceStoreData) -> bool
sourceimpl Serialize for ECommerceStoreData
impl Serialize for ECommerceStoreData
impl StructuralPartialEq for ECommerceStoreData
Auto Trait Implementations
impl RefUnwindSafe for ECommerceStoreData
impl Send for ECommerceStoreData
impl Sync for ECommerceStoreData
impl Unpin for ECommerceStoreData
impl UnwindSafe for ECommerceStoreData
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