pub struct BazaarWeekly {
pub busiest: Vec<BazaarWeeklyCustomers>,
pub most_popular: Vec<BazaarTotalFavorites>,
pub trending: Vec<BazaarRecentFavorites>,
pub top_grossing: Vec<BazaarWeeklyIncome>,
pub bulk: Vec<BazaarBulkSales>,
pub advanced_item: Vec<BazaarAdvancedItemSales>,
pub bargain: Vec<BazaarBargainSales>,
pub dollar_sale: Vec<BazaarDollarSales>,
}
Fields§
§busiest: Vec<BazaarWeeklyCustomers>
§most_popular: Vec<BazaarTotalFavorites>
§trending: Vec<BazaarRecentFavorites>
§top_grossing: Vec<BazaarWeeklyIncome>
§bulk: Vec<BazaarBulkSales>
§advanced_item: Vec<BazaarAdvancedItemSales>
§bargain: Vec<BazaarBargainSales>
§dollar_sale: Vec<BazaarDollarSales>
Trait Implementations§
Source§impl Clone for BazaarWeekly
impl Clone for BazaarWeekly
Source§fn clone(&self) -> BazaarWeekly
fn clone(&self) -> BazaarWeekly
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BazaarWeekly
impl Debug for BazaarWeekly
Source§impl<'de> Deserialize<'de> for BazaarWeekly
impl<'de> Deserialize<'de> for BazaarWeekly
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 From<BazaarWeekly> for Bazaar
impl From<BazaarWeekly> for Bazaar
Source§fn from(value: BazaarWeekly) -> Self
fn from(value: BazaarWeekly) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BazaarWeekly
impl PartialEq for BazaarWeekly
impl StructuralPartialEq for BazaarWeekly
Auto Trait Implementations§
impl Freeze for BazaarWeekly
impl RefUnwindSafe for BazaarWeekly
impl Send for BazaarWeekly
impl Sync for BazaarWeekly
impl Unpin for BazaarWeekly
impl UnwindSafe for BazaarWeekly
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