pub struct Batch<'a> {
pub header: BatchHeader<'a>,
pub entries: Vec<EntryDetail<'a>>,
pub control: BatchControl,
}Expand description
Represents a batch within an ACH file.
Fields§
§header: BatchHeader<'a>Batch header record (record type 5)
entries: Vec<EntryDetail<'a>>Collection of entry detail records
control: BatchControlBatch control record (record type 8)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Batch<'a>
impl<'a> RefUnwindSafe for Batch<'a>
impl<'a> Send for Batch<'a>
impl<'a> Sync for Batch<'a>
impl<'a> Unpin for Batch<'a>
impl<'a> UnwindSafe for Batch<'a>
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