pub enum RecordCode {
FileHeader,
GroupHeader,
AccountIdentifier,
TransactionDetail,
AccountTrailer,
Continuation,
GroupTrailer,
FileTrailer,
}Expand description
Supported BAI2 record codes.
Variants§
FileHeader
01 file header.
GroupHeader
02 group header.
AccountIdentifier
03 account identifier.
TransactionDetail
16 transaction detail.
AccountTrailer
49 account trailer.
Continuation
88 continuation.
GroupTrailer
98 group trailer.
FileTrailer
99 file trailer.
Implementations§
Source§impl RecordCode
impl RecordCode
Trait Implementations§
Source§impl Clone for RecordCode
impl Clone for RecordCode
Source§fn clone(&self) -> RecordCode
fn clone(&self) -> RecordCode
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 RecordCode
impl Debug for RecordCode
Source§impl Display for RecordCode
impl Display for RecordCode
Source§impl FromStr for RecordCode
impl FromStr for RecordCode
Source§impl Hash for RecordCode
impl Hash for RecordCode
Source§impl Ord for RecordCode
impl Ord for RecordCode
Source§fn cmp(&self, other: &RecordCode) -> Ordering
fn cmp(&self, other: &RecordCode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RecordCode
impl PartialEq for RecordCode
Source§impl PartialOrd for RecordCode
impl PartialOrd for RecordCode
impl Copy for RecordCode
impl Eq for RecordCode
impl StructuralPartialEq for RecordCode
Auto Trait Implementations§
impl Freeze for RecordCode
impl RefUnwindSafe for RecordCode
impl Send for RecordCode
impl Sync for RecordCode
impl Unpin for RecordCode
impl UnsafeUnpin for RecordCode
impl UnwindSafe for RecordCode
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