pub struct PaymentMethodDetailsAchCreditTransfer {
pub account_number: Option<String>,
pub bank_name: Option<String>,
pub routing_number: Option<String>,
pub swift_code: Option<String>,
}
Fields§
§account_number: Option<String>
Account number to transfer funds to.
bank_name: Option<String>
Name of the bank associated with the routing number.
routing_number: Option<String>
Routing transit number for the bank account to transfer funds to.
swift_code: Option<String>
SWIFT code of the bank associated with the routing number.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsAchCreditTransfer
impl Clone for PaymentMethodDetailsAchCreditTransfer
Source§fn clone(&self) -> PaymentMethodDetailsAchCreditTransfer
fn clone(&self) -> PaymentMethodDetailsAchCreditTransfer
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 FromValueOpt for PaymentMethodDetailsAchCreditTransfer
impl FromValueOpt for PaymentMethodDetailsAchCreditTransfer
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsAchCreditTransfer
impl RefUnwindSafe for PaymentMethodDetailsAchCreditTransfer
impl Send for PaymentMethodDetailsAchCreditTransfer
impl Sync for PaymentMethodDetailsAchCreditTransfer
impl Unpin for PaymentMethodDetailsAchCreditTransfer
impl UnwindSafe for PaymentMethodDetailsAchCreditTransfer
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