pub struct PaymentMethodAuBecsDebit {
pub bsb_number: Option<String>,
pub fingerprint: Option<String>,
pub last4: Option<String>,
}
Fields§
§bsb_number: Option<String>
Six-digit number identifying bank and branch associated with this bank account.
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.
Trait Implementations§
Source§impl Clone for PaymentMethodAuBecsDebit
impl Clone for PaymentMethodAuBecsDebit
Source§fn clone(&self) -> PaymentMethodAuBecsDebit
fn clone(&self) -> PaymentMethodAuBecsDebit
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 PaymentMethodAuBecsDebit
impl Debug for PaymentMethodAuBecsDebit
Source§impl FromValueOpt for PaymentMethodAuBecsDebit
impl FromValueOpt for PaymentMethodAuBecsDebit
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodAuBecsDebit
impl RefUnwindSafe for PaymentMethodAuBecsDebit
impl Send for PaymentMethodAuBecsDebit
impl Sync for PaymentMethodAuBecsDebit
impl Unpin for PaymentMethodAuBecsDebit
impl UnwindSafe for PaymentMethodAuBecsDebit
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