pub struct PaymentMethodDetailsKrCard {
pub brand: Option<PaymentMethodDetailsKrCardBrand>,
pub buyer_id: Option<String>,
pub last4: Option<String>,
}
Fields§
§brand: Option<PaymentMethodDetailsKrCardBrand>
The local credit or debit card brand.
buyer_id: Option<String>
A unique identifier for the buyer as determined by the local payment processor.
last4: Option<String>
The last four digits of the card. This may not be present for American Express cards.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsKrCard
impl Clone for PaymentMethodDetailsKrCard
Source§fn clone(&self) -> PaymentMethodDetailsKrCard
fn clone(&self) -> PaymentMethodDetailsKrCard
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PaymentMethodDetailsKrCard
impl Debug for PaymentMethodDetailsKrCard
Source§impl FromValueOpt for PaymentMethodDetailsKrCard
impl FromValueOpt for PaymentMethodDetailsKrCard
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsKrCard
impl RefUnwindSafe for PaymentMethodDetailsKrCard
impl Send for PaymentMethodDetailsKrCard
impl Sync for PaymentMethodDetailsKrCard
impl Unpin for PaymentMethodDetailsKrCard
impl UnwindSafe for PaymentMethodDetailsKrCard
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