pub struct Payer {
pub email_address: Option<String>,
pub payer_id: Option<String>,
pub name: Option<Name>,
pub phone: Option<PhoneWithType>,
pub birth_date: Option<DateNoTime>,
pub tax_info: Option<TaxInfo>,
pub address: Address,
}
Fields§
§email_address: Option<String>
The email address of the payer.
payer_id: Option<String>
§name: Option<Name>
§phone: Option<PhoneWithType>
§birth_date: Option<DateNoTime>
§tax_info: Option<TaxInfo>
§address: Address
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Payer
impl<'de> Deserialize<'de> for Payer
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 Payer
impl RefUnwindSafe for Payer
impl Send for Payer
impl Sync for Payer
impl Unpin for Payer
impl UnwindSafe for Payer
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