pub struct Total {
    pub sales: String,
    pub orders: i32,
    pub items: i32,
    pub tax: String,
    pub shipping: String,
    pub discount: String,
    pub customers: i32,
}Fields§
§sales: String§orders: i32§items: i32§tax: String§shipping: String§discount: String§customers: i32Trait Implementations§
Source§impl<'de> Deserialize<'de> for Total
 
impl<'de> Deserialize<'de> for Total
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 Total
impl RefUnwindSafe for Total
impl Send for Total
impl Sync for Total
impl Unpin for Total
impl UnwindSafe for Total
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