pub struct RetailStoreTypeConfig {
pub flagship: f64,
pub regional: f64,
pub outlet: f64,
pub ecommerce: f64,
}Expand description
Retail store type distribution.
Fields§
§flagship: f64Percentage of flagship stores.
regional: f64Percentage of regional stores.
outlet: f64Percentage of outlet stores.
ecommerce: f64Percentage of e-commerce.
Trait Implementations§
Source§impl Clone for RetailStoreTypeConfig
impl Clone for RetailStoreTypeConfig
Source§fn clone(&self) -> RetailStoreTypeConfig
fn clone(&self) -> RetailStoreTypeConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RetailStoreTypeConfig
impl Debug for RetailStoreTypeConfig
Source§impl Default for RetailStoreTypeConfig
impl Default for RetailStoreTypeConfig
Source§impl<'de> Deserialize<'de> for RetailStoreTypeConfig
impl<'de> Deserialize<'de> for RetailStoreTypeConfig
Source§fn 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
Auto Trait Implementations§
impl Freeze for RetailStoreTypeConfig
impl RefUnwindSafe for RetailStoreTypeConfig
impl Send for RetailStoreTypeConfig
impl Sync for RetailStoreTypeConfig
impl Unpin for RetailStoreTypeConfig
impl UnwindSafe for RetailStoreTypeConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more