#[non_exhaustive]pub enum PaymentMethodIdealBic {
Show 18 variants
Abnanl2a,
Asnbnl21,
Bitsnl2a,
Bunqnl2a,
Fvlbnl22,
Handnl2a,
Ingbnl2a,
Knabnl2h,
Moyonl21,
Nnbanl2g,
Ntsbdeb1,
Rabonl2u,
Rbrbnl21,
Revoie23,
Revolt21,
Snsbnl2a,
Trionl2u,
Unknown(String),
}
Expand description
The Bank Identifier Code of the customer’s bank, if the bank was provided.
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.
Abnanl2a
Asnbnl21
Bitsnl2a
Bunqnl2a
Fvlbnl22
Handnl2a
Ingbnl2a
Knabnl2h
Moyonl21
Nnbanl2g
Ntsbdeb1
Rabonl2u
Rbrbnl21
Revoie23
Revolt21
Snsbnl2a
Trionl2u
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for PaymentMethodIdealBic
impl Clone for PaymentMethodIdealBic
Source§fn clone(&self) -> PaymentMethodIdealBic
fn clone(&self) -> PaymentMethodIdealBic
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 PaymentMethodIdealBic
impl Debug for PaymentMethodIdealBic
Source§impl Deserialize for PaymentMethodIdealBic
impl Deserialize for PaymentMethodIdealBic
Source§impl Display for PaymentMethodIdealBic
impl Display for PaymentMethodIdealBic
Source§impl FromStr for PaymentMethodIdealBic
impl FromStr for PaymentMethodIdealBic
Source§impl FromValueOpt for PaymentMethodIdealBic
impl FromValueOpt for PaymentMethodIdealBic
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodIdealBic
impl PartialEq for PaymentMethodIdealBic
impl Eq for PaymentMethodIdealBic
impl StructuralPartialEq for PaymentMethodIdealBic
Auto Trait Implementations§
impl Freeze for PaymentMethodIdealBic
impl RefUnwindSafe for PaymentMethodIdealBic
impl Send for PaymentMethodIdealBic
impl Sync for PaymentMethodIdealBic
impl Unpin for PaymentMethodIdealBic
impl UnwindSafe for PaymentMethodIdealBic
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