#[non_exhaustive]pub enum PaymentMethodFpxBank {
Show 23 variants
AffinBank,
Agrobank,
AllianceBank,
Ambank,
BankIslam,
BankMuamalat,
BankOfChina,
BankRakyat,
Bsn,
Cimb,
DeutscheBank,
HongLeongBank,
Hsbc,
Kfh,
Maybank2e,
Maybank2u,
Ocbc,
PbEnterprise,
PublicBank,
Rhb,
StandardChartered,
Uob,
Unknown(String),
}
Expand description
The customer’s bank, if provided.
Can be one of affin_bank
, agrobank
, alliance_bank
, ambank
, bank_islam
, bank_muamalat
, bank_rakyat
, bsn
, cimb
, hong_leong_bank
, hsbc
, kfh
, maybank2u
, ocbc
, public_bank
, rhb
, standard_chartered
, uob
, deutsche_bank
, maybank2e
, pb_enterprise
, or bank_of_china
.
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.
AffinBank
Agrobank
AllianceBank
Ambank
BankIslam
BankMuamalat
BankOfChina
BankRakyat
Bsn
Cimb
DeutscheBank
HongLeongBank
Hsbc
Kfh
Maybank2e
Maybank2u
Ocbc
PbEnterprise
PublicBank
Rhb
StandardChartered
Uob
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for PaymentMethodFpxBank
impl Clone for PaymentMethodFpxBank
Source§fn clone(&self) -> PaymentMethodFpxBank
fn clone(&self) -> PaymentMethodFpxBank
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 PaymentMethodFpxBank
impl Debug for PaymentMethodFpxBank
Source§impl Deserialize for PaymentMethodFpxBank
impl Deserialize for PaymentMethodFpxBank
Source§impl Display for PaymentMethodFpxBank
impl Display for PaymentMethodFpxBank
Source§impl FromStr for PaymentMethodFpxBank
impl FromStr for PaymentMethodFpxBank
Source§impl FromValueOpt for PaymentMethodFpxBank
impl FromValueOpt for PaymentMethodFpxBank
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodFpxBank
impl PartialEq for PaymentMethodFpxBank
impl Eq for PaymentMethodFpxBank
impl StructuralPartialEq for PaymentMethodFpxBank
Auto Trait Implementations§
impl Freeze for PaymentMethodFpxBank
impl RefUnwindSafe for PaymentMethodFpxBank
impl Send for PaymentMethodFpxBank
impl Sync for PaymentMethodFpxBank
impl Unpin for PaymentMethodFpxBank
impl UnwindSafe for PaymentMethodFpxBank
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