pub struct PaymentMethodIdeal {
pub bank: Option<PaymentMethodIdealBank>,
pub bic: Option<PaymentMethodIdealBic>,
}
Fields§
§bank: Option<PaymentMethodIdealBank>
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
.
bic: Option<PaymentMethodIdealBic>
The Bank Identifier Code of the customer’s bank, if the bank was provided.
Trait Implementations§
Source§impl Clone for PaymentMethodIdeal
impl Clone for PaymentMethodIdeal
Source§fn clone(&self) -> PaymentMethodIdeal
fn clone(&self) -> PaymentMethodIdeal
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 PaymentMethodIdeal
impl Debug for PaymentMethodIdeal
Source§impl Deserialize for PaymentMethodIdeal
impl Deserialize for PaymentMethodIdeal
Source§impl FromValueOpt for PaymentMethodIdeal
impl FromValueOpt for PaymentMethodIdeal
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodIdeal
impl RefUnwindSafe for PaymentMethodIdeal
impl Send for PaymentMethodIdeal
impl Sync for PaymentMethodIdeal
impl Unpin for PaymentMethodIdeal
impl UnwindSafe for PaymentMethodIdeal
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