pub struct CreateConfirmationTokenPaymentMethodDataBacsDebit {
pub account_number: Option<String>,
pub sort_code: Option<String>,
}Expand description
If this is a bacs_debit PaymentMethod, this hash contains details about the Bacs Direct Debit bank account.
Fields§
§account_number: Option<String>Account number of the bank account that the funds will be debited from.
sort_code: Option<String>Sort code of the bank account. (e.g., 10-20-30)
Implementations§
Trait Implementations§
Source§impl Clone for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl Clone for CreateConfirmationTokenPaymentMethodDataBacsDebit
Source§fn clone(&self) -> CreateConfirmationTokenPaymentMethodDataBacsDebit
fn clone(&self) -> CreateConfirmationTokenPaymentMethodDataBacsDebit
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 PartialEq for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl PartialEq for CreateConfirmationTokenPaymentMethodDataBacsDebit
Source§fn eq(&self, other: &CreateConfirmationTokenPaymentMethodDataBacsDebit) -> bool
fn eq(&self, other: &CreateConfirmationTokenPaymentMethodDataBacsDebit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl StructuralPartialEq for CreateConfirmationTokenPaymentMethodDataBacsDebit
Auto Trait Implementations§
impl Freeze for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl RefUnwindSafe for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl Send for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl Sync for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl Unpin for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl UnsafeUnpin for CreateConfirmationTokenPaymentMethodDataBacsDebit
impl UnwindSafe for CreateConfirmationTokenPaymentMethodDataBacsDebit
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