pub struct Field60M {
pub debit_credit_mark: String,
pub value_date: NaiveDate,
pub currency: String,
pub amount: f64,
}
Expand description
Field 60M: Intermediate Opening Balance
Opening balance after 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 opening balance is a debit or credit position
value_date: NaiveDate
Value date of the intermediate opening 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 opening balance amount
Format: 15d - Decimal amount with comma separator Represents balance carried forward from previous sequence
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Field60M
impl<'de> Deserialize<'de> for Field60M
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 Field60M
impl SwiftField for Field60M
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 Field60M
Auto Trait Implementations§
impl Freeze for Field60M
impl RefUnwindSafe for Field60M
impl Send for Field60M
impl Sync for Field60M
impl Unpin for Field60M
impl UnwindSafe for Field60M
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