Struct mailchimp_api::types::ECommerceStore
source · pub struct ECommerceStore {Show 13 fields
pub address: Option<ECommerceStoresAddress>,
pub currency_code: String,
pub domain: String,
pub email_address: String,
pub id: String,
pub is_syncing: bool,
pub list_id: String,
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
The name of the folder.
domain: String
An individual store in an account.
email_address: String
An individual store in an account.
id: String
The name of the folder.
is_syncing: bool
An individual store in an account.
list_id: String
The name of the folder.
money_format: String
An individual store in an account.
name: String
The name of the folder.
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 ECommerceStore
impl Clone for ECommerceStore
sourcefn clone(&self) -> ECommerceStore
fn clone(&self) -> ECommerceStore
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 ECommerceStore
impl Debug for ECommerceStore
sourceimpl<'de> Deserialize<'de> for ECommerceStore
impl<'de> Deserialize<'de> for ECommerceStore
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 ECommerceStore
impl JsonSchema for ECommerceStore
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<ECommerceStore> for ECommerceStore
impl PartialEq<ECommerceStore> for ECommerceStore
sourcefn eq(&self, other: &ECommerceStore) -> bool
fn eq(&self, other: &ECommerceStore) -> bool
sourceimpl Serialize for ECommerceStore
impl Serialize for ECommerceStore
impl StructuralPartialEq for ECommerceStore
Auto Trait Implementations
impl RefUnwindSafe for ECommerceStore
impl Send for ECommerceStore
impl Sync for ECommerceStore
impl Unpin for ECommerceStore
impl UnwindSafe for ECommerceStore
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