pub struct DisputeTransactionShippingAddress {
pub city: Option<String>,
pub country: Option<String>,
pub line1: Option<String>,
pub line2: Option<String>,
pub postal_code: Option<String>,
pub state: Option<String>,
}Fields§
§city: Option<String>City, district, suburb, town, or village.
country: Option<String>Two-letter country code (ISO 3166-1 alpha-2).
line1: Option<String>Address line 1, such as the street, PO Box, or company name.
line2: Option<String>Address line 2, such as the apartment, suite, unit, or building.
postal_code: Option<String>ZIP or postal code.
state: Option<String>State, county, province, or region (ISO 3166-2).
Trait Implementations§
Source§impl Clone for DisputeTransactionShippingAddress
impl Clone for DisputeTransactionShippingAddress
Source§fn clone(&self) -> DisputeTransactionShippingAddress
fn clone(&self) -> DisputeTransactionShippingAddress
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 FromValueOpt for DisputeTransactionShippingAddress
impl FromValueOpt for DisputeTransactionShippingAddress
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for DisputeTransactionShippingAddress
impl PartialEq for DisputeTransactionShippingAddress
Source§fn eq(&self, other: &DisputeTransactionShippingAddress) -> bool
fn eq(&self, other: &DisputeTransactionShippingAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DisputeTransactionShippingAddress
impl StructuralPartialEq for DisputeTransactionShippingAddress
Auto Trait Implementations§
impl Freeze for DisputeTransactionShippingAddress
impl RefUnwindSafe for DisputeTransactionShippingAddress
impl Send for DisputeTransactionShippingAddress
impl Sync for DisputeTransactionShippingAddress
impl Unpin for DisputeTransactionShippingAddress
impl UnsafeUnpin for DisputeTransactionShippingAddress
impl UnwindSafe for DisputeTransactionShippingAddress
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