pub struct PaymentSourceResponse {
pub card: Option<CardResponse>,
pub paypal: Option<PayPalPaymentSourceResponse>,
}
Fields§
§card: Option<CardResponse>
§paypal: Option<PayPalPaymentSourceResponse>
Trait Implementations§
Source§impl Clone for PaymentSourceResponse
impl Clone for PaymentSourceResponse
Source§fn clone(&self) -> PaymentSourceResponse
fn clone(&self) -> PaymentSourceResponse
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 PaymentSourceResponse
impl Debug for PaymentSourceResponse
Source§impl Default for PaymentSourceResponse
impl Default for PaymentSourceResponse
Source§fn default() -> PaymentSourceResponse
fn default() -> PaymentSourceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaymentSourceResponse
impl<'de> Deserialize<'de> for PaymentSourceResponse
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 PaymentSourceResponse
impl RefUnwindSafe for PaymentSourceResponse
impl Send for PaymentSourceResponse
impl Sync for PaymentSourceResponse
impl Unpin for PaymentSourceResponse
impl UnwindSafe for PaymentSourceResponse
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