pub struct AgingInvoiceDetail {
pub invoice_number: String,
pub invoice_date: NaiveDate,
pub due_date: NaiveDate,
pub amount_remaining: Decimal,
pub days_overdue: i64,
pub bucket: AgingBucket,
}Expand description
Invoice detail for aging.
Fields§
§invoice_number: StringInvoice number.
invoice_date: NaiveDateInvoice date.
due_date: NaiveDateDue date.
amount_remaining: DecimalAmount remaining.
days_overdue: i64Days overdue.
bucket: AgingBucketAging bucket.
Trait Implementations§
Source§impl Clone for AgingInvoiceDetail
impl Clone for AgingInvoiceDetail
Source§fn clone(&self) -> AgingInvoiceDetail
fn clone(&self) -> AgingInvoiceDetail
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 moreSource§impl Debug for AgingInvoiceDetail
impl Debug for AgingInvoiceDetail
Source§impl<'de> Deserialize<'de> for AgingInvoiceDetail
impl<'de> Deserialize<'de> for AgingInvoiceDetail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AgingInvoiceDetail
impl RefUnwindSafe for AgingInvoiceDetail
impl Send for AgingInvoiceDetail
impl Sync for AgingInvoiceDetail
impl Unpin for AgingInvoiceDetail
impl UnwindSafe for AgingInvoiceDetail
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