pub struct OrderTestResponseResult {
pub standard_commission_for_order: Option<Box<OrderTestResponseResultStandardCommissionForOrder>>,
pub special_commission_for_order: Option<Box<OrderTestResponseResultSpecialCommissionForOrder>>,
pub tax_commission_for_order: Option<Box<OrderTestResponseResultStandardCommissionForOrder>>,
pub discount: Option<Box<OrderTestResponseResultDiscount>>,
}Fields§
§standard_commission_for_order: Option<Box<OrderTestResponseResultStandardCommissionForOrder>>§special_commission_for_order: Option<Box<OrderTestResponseResultSpecialCommissionForOrder>>§tax_commission_for_order: Option<Box<OrderTestResponseResultStandardCommissionForOrder>>§discount: Option<Box<OrderTestResponseResultDiscount>>Implementations§
Source§impl OrderTestResponseResult
impl OrderTestResponseResult
pub fn new() -> OrderTestResponseResult
Trait Implementations§
Source§impl Clone for OrderTestResponseResult
impl Clone for OrderTestResponseResult
Source§fn clone(&self) -> OrderTestResponseResult
fn clone(&self) -> OrderTestResponseResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrderTestResponseResult
impl Debug for OrderTestResponseResult
Source§impl Default for OrderTestResponseResult
impl Default for OrderTestResponseResult
Source§fn default() -> OrderTestResponseResult
fn default() -> OrderTestResponseResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderTestResponseResult
impl<'de> Deserialize<'de> for OrderTestResponseResult
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 PartialEq for OrderTestResponseResult
impl PartialEq for OrderTestResponseResult
Source§fn eq(&self, other: &OrderTestResponseResult) -> bool
fn eq(&self, other: &OrderTestResponseResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OrderTestResponseResult
impl Serialize for OrderTestResponseResult
impl StructuralPartialEq for OrderTestResponseResult
Auto Trait Implementations§
impl Freeze for OrderTestResponseResult
impl RefUnwindSafe for OrderTestResponseResult
impl Send for OrderTestResponseResult
impl Sync for OrderTestResponseResult
impl Unpin for OrderTestResponseResult
impl UnsafeUnpin for OrderTestResponseResult
impl UnwindSafe for OrderTestResponseResult
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