pub struct PaymentMethodPayto {
pub bsb_number: Option<String>,
pub last4: Option<String>,
pub pay_id: Option<String>,
}Fields§
§bsb_number: Option<String>Bank-State-Branch number of the bank account.
last4: Option<String>Last four digits of the bank account number.
pay_id: Option<String>The PayID alias for the bank account.
Trait Implementations§
Source§impl Clone for PaymentMethodPayto
impl Clone for PaymentMethodPayto
Source§fn clone(&self) -> PaymentMethodPayto
fn clone(&self) -> PaymentMethodPayto
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 PaymentMethodPayto
impl Debug for PaymentMethodPayto
Source§impl Deserialize for PaymentMethodPayto
impl Deserialize for PaymentMethodPayto
Source§impl FromValueOpt for PaymentMethodPayto
impl FromValueOpt for PaymentMethodPayto
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodPayto
impl RefUnwindSafe for PaymentMethodPayto
impl Send for PaymentMethodPayto
impl Sync for PaymentMethodPayto
impl Unpin for PaymentMethodPayto
impl UnwindSafe for PaymentMethodPayto
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