pub struct ShippingLineProperties {
pub id: i32,
pub method_title: String,
pub method_id: String,
pub total: String,
pub total_tax: String,
pub taxes: Vec<OrderTax>,
pub meta_data: Vec<MetaData>,
}
Fields§
§id: i32
Item ID.
method_title: String
Shipping method name.
method_id: String
Shipping method ID.
total: String
Line total (after discounts).
total_tax: String
Line total tax (after discounts).
taxes: Vec<OrderTax>
Line taxes.
meta_data: Vec<MetaData>
Meta data.
Trait Implementations§
Source§impl Clone for ShippingLineProperties
impl Clone for ShippingLineProperties
Source§fn clone(&self) -> ShippingLineProperties
fn clone(&self) -> ShippingLineProperties
Returns a copy 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 ShippingLineProperties
impl Debug for ShippingLineProperties
Source§impl<'de> Deserialize<'de> for ShippingLineProperties
impl<'de> Deserialize<'de> for ShippingLineProperties
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 ShippingLineProperties
impl RefUnwindSafe for ShippingLineProperties
impl Send for ShippingLineProperties
impl Sync for ShippingLineProperties
impl Unpin for ShippingLineProperties
impl UnwindSafe for ShippingLineProperties
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