pub struct OrderLineItemProductFee {
pub amount: Option<Price>,
pub name: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§amount: Option<Price>Amount of the fee.
name: Option<String>Name of the fee.
Trait Implementations§
Source§impl Clone for OrderLineItemProductFee
impl Clone for OrderLineItemProductFee
Source§fn clone(&self) -> OrderLineItemProductFee
fn clone(&self) -> OrderLineItemProductFee
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 OrderLineItemProductFee
impl Debug for OrderLineItemProductFee
Source§impl Default for OrderLineItemProductFee
impl Default for OrderLineItemProductFee
Source§fn default() -> OrderLineItemProductFee
fn default() -> OrderLineItemProductFee
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderLineItemProductFee
impl<'de> Deserialize<'de> for OrderLineItemProductFee
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 OrderLineItemProductFee
impl Serialize for OrderLineItemProductFee
impl Part for OrderLineItemProductFee
Auto Trait Implementations§
impl Freeze for OrderLineItemProductFee
impl RefUnwindSafe for OrderLineItemProductFee
impl Send for OrderLineItemProductFee
impl Sync for OrderLineItemProductFee
impl Unpin for OrderLineItemProductFee
impl UnwindSafe for OrderLineItemProductFee
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