pub struct OrderDetails {
pub tax_inclusive: Option<bool>,
}Expand description
Detailed information about the order at creation time.
This type is not used in any activity, and only used as part of another schema.
Fields§
§tax_inclusive: Option<bool>Indicates whether the listed price was tax inclusive or not.
Trait Implementations§
Source§impl Clone for OrderDetails
impl Clone for OrderDetails
Source§fn clone(&self) -> OrderDetails
fn clone(&self) -> OrderDetails
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 OrderDetails
impl Debug for OrderDetails
Source§impl Default for OrderDetails
impl Default for OrderDetails
Source§fn default() -> OrderDetails
fn default() -> OrderDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderDetails
impl<'de> Deserialize<'de> for OrderDetails
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 OrderDetails
impl Serialize for OrderDetails
impl Part for OrderDetails
Auto Trait Implementations§
impl Freeze for OrderDetails
impl RefUnwindSafe for OrderDetails
impl Send for OrderDetails
impl Sync for OrderDetails
impl Unpin for OrderDetails
impl UnwindSafe for OrderDetails
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