pub struct DvdSales {
pub action: i32,
pub comedy: i32,
pub drama: i32,
pub fantasy: i32,
pub horror: i32,
pub romance: i32,
pub thriller: i32,
pub sci_fi: i32,
pub total: i32,
pub earnings: i32,
}
Expand description
DVD sales statistics.
Fields§
§action: i32
§comedy: i32
§drama: i32
§fantasy: i32
§horror: i32
§romance: i32
§thriller: i32
§sci_fi: i32
§total: i32
§earnings: i32
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DvdSales
impl<'de> Deserialize<'de> for DvdSales
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
impl StructuralPartialEq for DvdSales
Auto Trait Implementations§
impl Freeze for DvdSales
impl RefUnwindSafe for DvdSales
impl Send for DvdSales
impl Sync for DvdSales
impl Unpin for DvdSales
impl UnwindSafe for DvdSales
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