#[non_exhaustive]pub enum PaymentMethodKrCardBrand {
Show 23 variants
Bc,
Citi,
Hana,
Hyundai,
Jeju,
Jeonbuk,
Kakaobank,
Kbank,
Kdbbank,
Kookmin,
Kwangju,
Lotte,
Mg,
Nh,
Post,
Samsung,
Savingsbank,
Shinhan,
Shinhyup,
Suhyup,
Tossbank,
Woori,
Unknown(String),
}
Expand description
The local credit or debit card brand.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Bc
Citi
Hana
Hyundai
Jeju
Jeonbuk
Kakaobank
Kbank
Kdbbank
Kookmin
Kwangju
Lotte
Mg
Nh
Post
Samsung
Savingsbank
Shinhan
Shinhyup
Suhyup
Tossbank
Woori
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for PaymentMethodKrCardBrand
impl Clone for PaymentMethodKrCardBrand
Source§fn clone(&self) -> PaymentMethodKrCardBrand
fn clone(&self) -> PaymentMethodKrCardBrand
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 PaymentMethodKrCardBrand
impl Debug for PaymentMethodKrCardBrand
Source§impl Display for PaymentMethodKrCardBrand
impl Display for PaymentMethodKrCardBrand
Source§impl FromStr for PaymentMethodKrCardBrand
impl FromStr for PaymentMethodKrCardBrand
Source§impl FromValueOpt for PaymentMethodKrCardBrand
impl FromValueOpt for PaymentMethodKrCardBrand
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodKrCardBrand
impl PartialEq for PaymentMethodKrCardBrand
impl Eq for PaymentMethodKrCardBrand
impl StructuralPartialEq for PaymentMethodKrCardBrand
Auto Trait Implementations§
impl Freeze for PaymentMethodKrCardBrand
impl RefUnwindSafe for PaymentMethodKrCardBrand
impl Send for PaymentMethodKrCardBrand
impl Sync for PaymentMethodKrCardBrand
impl Unpin for PaymentMethodKrCardBrand
impl UnwindSafe for PaymentMethodKrCardBrand
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