pub struct Billing {
pub first_name: String,
pub last_name: String,
pub company: String,
pub address_1: String,
pub address_2: String,
pub city: String,
pub state: String,
pub postcode: String,
pub country: String,
pub email: String,
pub phone: String,
}Fields§
§first_name: StringFirst name.
last_name: StringLast name.
company: StringCompany name.
address_1: StringAddress line 1
address_2: StringAddress line 2
city: StringCity name.
state: StringISO code or name of the state, province or district.
postcode: StringPostal code.
country: StringISO code of the country.
email: StringEmail address.
phone: StringPhone number.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Billing
impl<'de> Deserialize<'de> for Billing
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 Billing
impl RefUnwindSafe for Billing
impl Send for Billing
impl Sync for Billing
impl Unpin for Billing
impl UnwindSafe for Billing
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