pub struct PayPalPaymentSourceResponse {
pub account_id: Option<String>,
pub address: Option<PayPalPaymentSourceResponseAddress>,
pub email_address: Option<String>,
pub name: Option<Name>,
}
Fields§
§account_id: Option<String>
§address: Option<PayPalPaymentSourceResponseAddress>
§email_address: Option<String>
§name: Option<Name>
Trait Implementations§
Source§impl Clone for PayPalPaymentSourceResponse
impl Clone for PayPalPaymentSourceResponse
Source§fn clone(&self) -> PayPalPaymentSourceResponse
fn clone(&self) -> PayPalPaymentSourceResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PayPalPaymentSourceResponse
impl Debug for PayPalPaymentSourceResponse
Source§impl Default for PayPalPaymentSourceResponse
impl Default for PayPalPaymentSourceResponse
Source§fn default() -> PayPalPaymentSourceResponse
fn default() -> PayPalPaymentSourceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PayPalPaymentSourceResponse
impl<'de> Deserialize<'de> for PayPalPaymentSourceResponse
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 PayPalPaymentSourceResponse
impl RefUnwindSafe for PayPalPaymentSourceResponse
impl Send for PayPalPaymentSourceResponse
impl Sync for PayPalPaymentSourceResponse
impl Unpin for PayPalPaymentSourceResponse
impl UnwindSafe for PayPalPaymentSourceResponse
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