pub struct Level3LineItems {
pub discount_amount: Option<i64>,
pub product_code: String,
pub product_description: String,
pub quantity: Option<u64>,
pub tax_amount: Option<i64>,
pub unit_cost: Option<i64>,
}
Fields§
§discount_amount: Option<i64>
§product_code: String
§product_description: String
§quantity: Option<u64>
§tax_amount: Option<i64>
§unit_cost: Option<i64>
Trait Implementations§
Source§impl Clone for Level3LineItems
impl Clone for Level3LineItems
Source§fn clone(&self) -> Level3LineItems
fn clone(&self) -> Level3LineItems
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 Level3LineItems
impl Debug for Level3LineItems
Source§impl Deserialize for Level3LineItems
impl Deserialize for Level3LineItems
Source§impl ObjectDeser for Level3LineItems
impl ObjectDeser for Level3LineItems
Auto Trait Implementations§
impl Freeze for Level3LineItems
impl RefUnwindSafe for Level3LineItems
impl Send for Level3LineItems
impl Sync for Level3LineItems
impl Unpin for Level3LineItems
impl UnwindSafe for Level3LineItems
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