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