pub struct PaymentMethodKrCard {
pub brand: Option<PaymentMethodKrCardBrand>,
pub last4: Option<String>,
}
Fields§
§brand: Option<PaymentMethodKrCardBrand>
The local credit or debit card brand.
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 PaymentMethodKrCard
impl Clone for PaymentMethodKrCard
Source§fn clone(&self) -> PaymentMethodKrCard
fn clone(&self) -> PaymentMethodKrCard
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 PaymentMethodKrCard
impl Debug for PaymentMethodKrCard
Source§impl Deserialize for PaymentMethodKrCard
impl Deserialize for PaymentMethodKrCard
Source§impl FromValueOpt for PaymentMethodKrCard
impl FromValueOpt for PaymentMethodKrCard
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodKrCard
impl RefUnwindSafe for PaymentMethodKrCard
impl Send for PaymentMethodKrCard
impl Sync for PaymentMethodKrCard
impl Unpin for PaymentMethodKrCard
impl UnwindSafe for PaymentMethodKrCard
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