pub struct AchAddress {
pub account_holder: AccountHolderDetails,
pub bank_name: Option<String>,
pub bank_account_number: String,
pub routing_number: String,
pub account_type: AchAccountType,
}Fields§
§account_holder: AccountHolderDetails§bank_name: Option<String>Name of the bank.
bank_account_number: StringThe bank account number for the ACH transfer.
routing_number: StringRouting number identifying the bank account.
account_type: AchAccountTypeImplementations§
Source§impl AchAddress
impl AchAddress
pub fn new( account_holder: AccountHolderDetails, bank_account_number: String, routing_number: String, account_type: AchAccountType, ) -> AchAddress
Trait Implementations§
Source§impl Clone for AchAddress
impl Clone for AchAddress
Source§fn clone(&self) -> AchAddress
fn clone(&self) -> AchAddress
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 AchAddress
impl Debug for AchAddress
Source§impl Default for AchAddress
impl Default for AchAddress
Source§fn default() -> AchAddress
fn default() -> AchAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AchAddress
impl<'de> Deserialize<'de> for AchAddress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AchAddress
impl PartialEq for AchAddress
Source§impl Serialize for AchAddress
impl Serialize for AchAddress
impl StructuralPartialEq for AchAddress
Auto Trait Implementations§
impl Freeze for AchAddress
impl RefUnwindSafe for AchAddress
impl Send for AchAddress
impl Sync for AchAddress
impl Unpin for AchAddress
impl UnwindSafe for AchAddress
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