pub struct ShippingAddress {
pub s_address: Option<String>,
pub s_adddress_2: Option<String>,
pub s_city: Option<String>,
pub s_country: Option<String>,
pub s_country_descr: Option<String>,
pub s_firstname: Option<String>,
pub s_lastname: Option<String>,
pub s_phone: Option<String>,
pub s_state: Option<String>,
pub s_state_descr: Option<String>,
pub s_zipcode: Option<String>,
}Fields§
§s_address: Option<String>§s_adddress_2: Option<String>§s_city: Option<String>§s_country: Option<String>§s_country_descr: Option<String>§s_firstname: Option<String>§s_lastname: Option<String>§s_phone: Option<String>§s_state: Option<String>§s_state_descr: Option<String>§s_zipcode: Option<String>Trait Implementations§
Source§impl Debug for ShippingAddress
impl Debug for ShippingAddress
Source§impl<'de> Deserialize<'de> for ShippingAddress
impl<'de> Deserialize<'de> for ShippingAddress
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 ShippingAddress
impl RefUnwindSafe for ShippingAddress
impl Send for ShippingAddress
impl Sync for ShippingAddress
impl Unpin for ShippingAddress
impl UnwindSafe for ShippingAddress
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