pub struct AchInstruction {
pub account_id: String,
pub ach_type: AchInstructionAchType,
pub bank_instruction_code: AchInstructionBankInstructionCode,
pub bank_instruction_name: String,
pub client_account_info: AchInstructionClientAccountInfo,
pub client_instruction_id: f64,
pub currency: String,
}Fields§
§account_id: String- Example:
"U223454".to_string()
ach_type: AchInstructionAchType- Example:
"DEBIT_CREDIT"
bank_instruction_code: AchInstructionBankInstructionCode- Example:
"USACH"
bank_instruction_name: String- Example:
"TestInstr".to_string()
client_account_info: AchInstructionClientAccountInfo§client_instruction_id: f64- Example:
1012983.0
currency: String- Example:
"USD".to_string()
Trait Implementations§
Source§impl Clone for AchInstruction
impl Clone for AchInstruction
Source§fn clone(&self) -> AchInstruction
fn clone(&self) -> AchInstruction
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 AchInstruction
impl Debug for AchInstruction
Source§impl Default for AchInstruction
impl Default for AchInstruction
Source§impl PartialEq for AchInstruction
impl PartialEq for AchInstruction
Source§impl Serialize for AchInstruction
impl Serialize for AchInstruction
Source§impl Validate for AchInstruction
impl Validate for AchInstruction
Source§impl<'v_a> ValidateArgs<'v_a> for AchInstruction
impl<'v_a> ValidateArgs<'v_a> for AchInstruction
impl StructuralPartialEq for AchInstruction
Auto Trait Implementations§
impl Freeze for AchInstruction
impl RefUnwindSafe for AchInstruction
impl Send for AchInstruction
impl Sync for AchInstruction
impl Unpin for AchInstruction
impl UnsafeUnpin for AchInstruction
impl UnwindSafe for AchInstruction
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