pub struct AccountStatusProducts {
pub channel: Option<String>,
pub country: Option<String>,
pub destination: Option<String>,
pub item_level_issues: Option<Vec<AccountStatusItemLevelIssue>>,
pub statistics: Option<AccountStatusStatistics>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§channel: Option<String>The channel the data applies to. Acceptable values are: - “local” - “online”
country: Option<String>The country the data applies to.
destination: Option<String>The destination the data applies to.
item_level_issues: Option<Vec<AccountStatusItemLevelIssue>>List of item-level issues.
statistics: Option<AccountStatusStatistics>Aggregated product statistics.
Trait Implementations§
Source§impl Clone for AccountStatusProducts
impl Clone for AccountStatusProducts
Source§fn clone(&self) -> AccountStatusProducts
fn clone(&self) -> AccountStatusProducts
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 AccountStatusProducts
impl Debug for AccountStatusProducts
Source§impl Default for AccountStatusProducts
impl Default for AccountStatusProducts
Source§fn default() -> AccountStatusProducts
fn default() -> AccountStatusProducts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountStatusProducts
impl<'de> Deserialize<'de> for AccountStatusProducts
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
Source§impl Serialize for AccountStatusProducts
impl Serialize for AccountStatusProducts
impl Part for AccountStatusProducts
Auto Trait Implementations§
impl Freeze for AccountStatusProducts
impl RefUnwindSafe for AccountStatusProducts
impl Send for AccountStatusProducts
impl Sync for AccountStatusProducts
impl Unpin for AccountStatusProducts
impl UnwindSafe for AccountStatusProducts
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