pub struct Field62M {
pub debit_credit_mark: String,
pub value_date: NaiveDate,
pub currency: String,
pub amount: f64,
}
Expand description
Field 62M: Intermediate Closing Balance
Closing balance at a sequence break within a statement period. Used to maintain balance continuity across statement sequences.
Fields§
§debit_credit_mark: String
Debit or Credit mark
Format: 1!a - ‘D’ (Debit) or ‘C’ (Credit) Indicates whether the intermediate closing balance is a debit or credit position
value_date: NaiveDate
Value date of the intermediate closing balance
Format: 6!n (YYMMDD) - Date when balance is effective Represents balance at sequence break point
currency: String
Currency of the balance
Format: 3!a - ISO 4217 currency code (USD, EUR, GBP, etc.) Must match account currency for consistency
amount: f64
Intermediate closing balance amount
Format: 15d - Decimal amount with comma separator Becomes opening balance for next sequence
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Field62M
impl<'de> Deserialize<'de> for Field62M
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl SwiftField for Field62M
impl SwiftField for Field62M
Source§fn to_swift_string(&self) -> String
fn to_swift_string(&self) -> String
Convert field back to SWIFT string format
Source§fn format_spec() -> &'static str
fn format_spec() -> &'static str
Get field format specification
impl StructuralPartialEq for Field62M
Auto Trait Implementations§
impl Freeze for Field62M
impl RefUnwindSafe for Field62M
impl Send for Field62M
impl Sync for Field62M
impl Unpin for Field62M
impl UnwindSafe for Field62M
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