pub struct Level3 {
pub customer_reference: Option<String>,
pub line_items: Vec<Level3LineItems>,
pub merchant_reference: String,
pub shipping_address_zip: Option<String>,
pub shipping_amount: Option<i64>,
pub shipping_from_zip: Option<String>,
}Fields§
§customer_reference: Option<String>§line_items: Vec<Level3LineItems>§merchant_reference: String§shipping_address_zip: Option<String>§shipping_amount: Option<i64>§shipping_from_zip: Option<String>Trait Implementations§
Source§impl Deserialize for Level3
impl Deserialize for Level3
impl Eq for Level3
impl StructuralPartialEq for Level3
Auto Trait Implementations§
impl Freeze for Level3
impl RefUnwindSafe for Level3
impl Send for Level3
impl Sync for Level3
impl Unpin for Level3
impl UnsafeUnpin for Level3
impl UnwindSafe for Level3
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