pub struct UnreconciledEntry {
pub entry_type: String,
pub document_number: String,
pub amount: Decimal,
pub description: String,
}Expand description
An item that doesn’t reconcile.
Fields§
§entry_type: StringType of discrepancy.
document_number: StringDocument number.
amount: DecimalAmount.
description: StringDescription of discrepancy.
Trait Implementations§
Source§impl Clone for UnreconciledEntry
impl Clone for UnreconciledEntry
Source§fn clone(&self) -> UnreconciledEntry
fn clone(&self) -> UnreconciledEntry
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 UnreconciledEntry
impl RefUnwindSafe for UnreconciledEntry
impl Send for UnreconciledEntry
impl Sync for UnreconciledEntry
impl Unpin for UnreconciledEntry
impl UnwindSafe for UnreconciledEntry
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