pub struct GlTransaction {
pub id: String,
pub date: String,
pub description: String,
pub gl_account: String,
pub amount: String,
}Expand description
A general ledger transaction.
Fields§
§id: String§date: String§description: String§gl_account: String§amount: StringTrait Implementations§
Source§impl Clone for GlTransaction
impl Clone for GlTransaction
Source§fn clone(&self) -> GlTransaction
fn clone(&self) -> GlTransaction
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 GlTransaction
impl RefUnwindSafe for GlTransaction
impl Send for GlTransaction
impl Sync for GlTransaction
impl Unpin for GlTransaction
impl UnsafeUnpin for GlTransaction
impl UnwindSafe for GlTransaction
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