pub struct TransactionPage {
pub booked: Mt940Data,
pub pending: Mt940Data,
pub touchdown: Option<TouchdownPoint>,
}Expand description
Result of a transaction request (single page).
Fields§
§booked: Mt940DataMT940 booked transaction data.
pending: Mt940DataMT940 pending transaction data.
touchdown: Option<TouchdownPoint>If Some, more data is available — call transactions() again with this value.
Auto Trait Implementations§
impl Freeze for TransactionPage
impl RefUnwindSafe for TransactionPage
impl Send for TransactionPage
impl Sync for TransactionPage
impl Unpin for TransactionPage
impl UnsafeUnpin for TransactionPage
impl UnwindSafe for TransactionPage
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