pub struct FileControl {
pub record_type: String,
pub batch_count: u64,
pub block_count: u64,
pub entry_addenda_count: u64,
pub entry_hash: u64,
pub total_debit_amount: u64,
pub total_credit_amount: u64,
pub reserved: String,
}Expand description
File Control Record (Record Type 9)
Contains totals and counts for the entire file.
Fields§
§record_type: StringRecord Type Code (always “9”)
batch_count: u64Batch Count
block_count: u64Block Count
entry_addenda_count: u64Entry/Addenda Count
entry_hash: u64Entry Hash - Sum of all entry hashes
total_debit_amount: u64Total Debit Entry Dollar Amount in File (in cents)
total_credit_amount: u64Total Credit Entry Dollar Amount in File (in cents)
reserved: StringReserved (39 characters)
Trait Implementations§
Source§impl Clone for FileControl
impl Clone for FileControl
Source§fn clone(&self) -> FileControl
fn clone(&self) -> FileControl
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 moreAuto Trait Implementations§
impl Freeze for FileControl
impl RefUnwindSafe for FileControl
impl Send for FileControl
impl Sync for FileControl
impl Unpin for FileControl
impl UnwindSafe for FileControl
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