#[non_exhaustive]pub enum PaymentMethodIdealBank {
Show 17 variants
AbnAmro,
AsnBank,
Bunq,
Handelsbanken,
Ing,
Knab,
Moneyou,
N26,
Nn,
Rabobank,
Regiobank,
Revolut,
SnsBank,
TriodosBank,
VanLanschot,
Yoursafe,
Unknown(String),
}
Expand description
The customer’s bank, if provided.
Can be one of abn_amro
, asn_bank
, bunq
, handelsbanken
, ing
, knab
, moneyou
, n26
, nn
, rabobank
, regiobank
, revolut
, sns_bank
, triodos_bank
, van_lanschot
, or yoursafe
.
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.
AbnAmro
AsnBank
Bunq
Handelsbanken
Ing
Knab
Moneyou
N26
Nn
Rabobank
Regiobank
Revolut
SnsBank
TriodosBank
VanLanschot
Yoursafe
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for PaymentMethodIdealBank
impl Clone for PaymentMethodIdealBank
Source§fn clone(&self) -> PaymentMethodIdealBank
fn clone(&self) -> PaymentMethodIdealBank
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 PaymentMethodIdealBank
impl Debug for PaymentMethodIdealBank
Source§impl Deserialize for PaymentMethodIdealBank
impl Deserialize for PaymentMethodIdealBank
Source§impl Display for PaymentMethodIdealBank
impl Display for PaymentMethodIdealBank
Source§impl FromStr for PaymentMethodIdealBank
impl FromStr for PaymentMethodIdealBank
Source§impl FromValueOpt for PaymentMethodIdealBank
impl FromValueOpt for PaymentMethodIdealBank
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodIdealBank
impl PartialEq for PaymentMethodIdealBank
impl Eq for PaymentMethodIdealBank
impl StructuralPartialEq for PaymentMethodIdealBank
Auto Trait Implementations§
impl Freeze for PaymentMethodIdealBank
impl RefUnwindSafe for PaymentMethodIdealBank
impl Send for PaymentMethodIdealBank
impl Sync for PaymentMethodIdealBank
impl Unpin for PaymentMethodIdealBank
impl UnwindSafe for PaymentMethodIdealBank
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