pub struct BillingAddress {
pub b_address: Option<String>,
pub b_adddress_2: Option<String>,
pub b_city: Option<String>,
pub b_country: Option<String>,
pub b_country_descr: Option<String>,
pub b_firstname: Option<String>,
pub b_lastname: Option<String>,
pub b_phone: Option<String>,
pub b_state: Option<String>,
pub b_state_descr: Option<String>,
pub b_zipcode: Option<String>,
}Fields§
§b_address: Option<String>§b_adddress_2: Option<String>§b_city: Option<String>§b_country: Option<String>§b_country_descr: Option<String>§b_firstname: Option<String>§b_lastname: Option<String>§b_phone: Option<String>§b_state: Option<String>§b_state_descr: Option<String>§b_zipcode: Option<String>Trait Implementations§
Source§impl Debug for BillingAddress
impl Debug for BillingAddress
Source§impl<'de> Deserialize<'de> for BillingAddress
impl<'de> Deserialize<'de> for BillingAddress
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 BillingAddress
impl RefUnwindSafe for BillingAddress
impl Send for BillingAddress
impl Sync for BillingAddress
impl Unpin for BillingAddress
impl UnwindSafe for BillingAddress
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