pub struct Addenda<'a> {
pub record_type: &'a str,
pub addenda_type_code: &'a str,
pub payment_related_information: &'a str,
pub addenda_sequence_number: &'a str,
pub entry_detail_sequence_number: &'a str,
}Expand description
Addenda Record (Record Type 7)
Provides additional information for an entry detail record.
Fields§
§record_type: &'a strRecord Type Code (always “7”)
addenda_type_code: &'a strAddenda Type Code (05 for most types)
Payment Related Information (80 characters)
addenda_sequence_number: &'a strAddenda Sequence Number (4 characters)
entry_detail_sequence_number: &'a strEntry Detail Sequence Number (7 characters)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Addenda<'a>
impl<'a> RefUnwindSafe for Addenda<'a>
impl<'a> Send for Addenda<'a>
impl<'a> Sync for Addenda<'a>
impl<'a> Unpin for Addenda<'a>
impl<'a> UnwindSafe for Addenda<'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