pub struct InterimSummary {
pub opening_balance: (String, NaiveDate, String, f64),
pub closing_balance: (String, NaiveDate, String, f64),
pub closing_available_balance: Option<(String, NaiveDate, String, f64)>,
pub floor_limit: Option<(String, f64)>,
pub transaction_count: usize,
pub date_time_indication: Option<String>,
}
Expand description
Summary of an MT942 interim transaction report
Fields§
§opening_balance: (String, NaiveDate, String, f64)
§closing_balance: (String, NaiveDate, String, f64)
§closing_available_balance: Option<(String, NaiveDate, String, f64)>
§floor_limit: Option<(String, f64)>
§transaction_count: usize
§date_time_indication: Option<String>
Trait Implementations§
Source§impl Clone for InterimSummary
impl Clone for InterimSummary
Source§fn clone(&self) -> InterimSummary
fn clone(&self) -> InterimSummary
Returns a copy 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 InterimSummary
impl RefUnwindSafe for InterimSummary
impl Send for InterimSummary
impl Sync for InterimSummary
impl Unpin for InterimSummary
impl UnwindSafe for InterimSummary
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