pub struct PaymentMethodParam {
pub account_number: String,
pub institution_number: String,
pub transit_number: String,
}
Fields§
§account_number: String
Customer’s bank account number.
institution_number: String
Institution number of the customer’s bank.
transit_number: String
Transit number of the customer’s bank.
Implementations§
Trait Implementations§
Source§impl Clone for PaymentMethodParam
impl Clone for PaymentMethodParam
Source§fn clone(&self) -> PaymentMethodParam
fn clone(&self) -> PaymentMethodParam
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 PaymentMethodParam
impl Debug for PaymentMethodParam
Auto Trait Implementations§
impl Freeze for PaymentMethodParam
impl RefUnwindSafe for PaymentMethodParam
impl Send for PaymentMethodParam
impl Sync for PaymentMethodParam
impl Unpin for PaymentMethodParam
impl UnwindSafe for PaymentMethodParam
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