pub struct PaymentMethodBacsDebit {
pub fingerprint: Option<String>,
pub last4: Option<String>,
pub sort_code: Option<String>,
}Fields§
§fingerprint: Option<String>Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.
last4: Option<String>Last four digits of the bank account number.
sort_code: Option<String>Sort code of the bank account. (e.g., 10-20-30)
Trait Implementations§
Source§impl Clone for PaymentMethodBacsDebit
impl Clone for PaymentMethodBacsDebit
Source§fn clone(&self) -> PaymentMethodBacsDebit
fn clone(&self) -> PaymentMethodBacsDebit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaymentMethodBacsDebit
impl Debug for PaymentMethodBacsDebit
Source§impl Deserialize for PaymentMethodBacsDebit
impl Deserialize for PaymentMethodBacsDebit
Source§impl FromValueOpt for PaymentMethodBacsDebit
impl FromValueOpt for PaymentMethodBacsDebit
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for PaymentMethodBacsDebit
impl ObjectDeser for PaymentMethodBacsDebit
Source§impl PartialEq for PaymentMethodBacsDebit
impl PartialEq for PaymentMethodBacsDebit
Source§fn eq(&self, other: &PaymentMethodBacsDebit) -> bool
fn eq(&self, other: &PaymentMethodBacsDebit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodBacsDebit
impl StructuralPartialEq for PaymentMethodBacsDebit
Auto Trait Implementations§
impl Freeze for PaymentMethodBacsDebit
impl RefUnwindSafe for PaymentMethodBacsDebit
impl Send for PaymentMethodBacsDebit
impl Sync for PaymentMethodBacsDebit
impl Unpin for PaymentMethodBacsDebit
impl UnsafeUnpin for PaymentMethodBacsDebit
impl UnwindSafe for PaymentMethodBacsDebit
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