pub struct TransactionDetail {
pub id: String,
pub date: String,
pub description: String,
pub amount: String,
pub currency: String,
pub gl_account_code: String,
}Expand description
Full details for a single transaction line.
Fields§
§id: String§date: String§description: String§amount: String§currency: String§gl_account_code: StringTrait Implementations§
Source§impl Clone for TransactionDetail
impl Clone for TransactionDetail
Source§fn clone(&self) -> TransactionDetail
fn clone(&self) -> TransactionDetail
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 moreAuto Trait Implementations§
impl Freeze for TransactionDetail
impl RefUnwindSafe for TransactionDetail
impl Send for TransactionDetail
impl Sync for TransactionDetail
impl Unpin for TransactionDetail
impl UnsafeUnpin for TransactionDetail
impl UnwindSafe for TransactionDetail
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