pub struct AchInstructionClientAccountInfo {
pub bank_account_number: String,
pub bank_account_type_code: AchInstructionClientAccountInfoBankAccountTypeCode,
pub bank_name: String,
pub bank_routing_number: String,
}Fields§
§bank_account_number: String- Example:
"101267576983".to_string()
bank_account_type_code: AchInstructionClientAccountInfoBankAccountTypeCode- Example:
1
bank_name: String- Example:
"JPM Chase".to_string()
bank_routing_number: String- Example:
"202012983".to_string()
Trait Implementations§
Source§impl Clone for AchInstructionClientAccountInfo
impl Clone for AchInstructionClientAccountInfo
Source§fn clone(&self) -> AchInstructionClientAccountInfo
fn clone(&self) -> AchInstructionClientAccountInfo
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 PartialEq for AchInstructionClientAccountInfo
impl PartialEq for AchInstructionClientAccountInfo
Source§fn eq(&self, other: &AchInstructionClientAccountInfo) -> bool
fn eq(&self, other: &AchInstructionClientAccountInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'v_a> ValidateArgs<'v_a> for AchInstructionClientAccountInfo
impl<'v_a> ValidateArgs<'v_a> for AchInstructionClientAccountInfo
impl StructuralPartialEq for AchInstructionClientAccountInfo
Auto Trait Implementations§
impl Freeze for AchInstructionClientAccountInfo
impl RefUnwindSafe for AchInstructionClientAccountInfo
impl Send for AchInstructionClientAccountInfo
impl Sync for AchInstructionClientAccountInfo
impl Unpin for AchInstructionClientAccountInfo
impl UnsafeUnpin for AchInstructionClientAccountInfo
impl UnwindSafe for AchInstructionClientAccountInfo
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