pub struct ArAgingItem {
pub expected_date: NaiveDate,
pub amount: Decimal,
pub days_past_due: u32,
pub document_id: String,
}Expand description
A receivable item from AR aging for forecast input.
Fields§
§expected_date: NaiveDateExpected collection date
amount: DecimalInvoice amount
days_past_due: u32Days past due (0 = current)
document_id: StringSource document ID
Trait Implementations§
Source§impl Clone for ArAgingItem
impl Clone for ArAgingItem
Source§fn clone(&self) -> ArAgingItem
fn clone(&self) -> ArAgingItem
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 ArAgingItem
impl RefUnwindSafe for ArAgingItem
impl Send for ArAgingItem
impl Sync for ArAgingItem
impl Unpin for ArAgingItem
impl UnsafeUnpin for ArAgingItem
impl UnwindSafe for ArAgingItem
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