pub struct OnAccountApplication {
pub invoice_id: String,
pub amount: Decimal,
pub application_date: NaiveDate,
}Expand description
Application of on-account payment to an invoice.
Fields§
§invoice_id: StringInvoice ID applied to.
amount: DecimalAmount applied.
application_date: NaiveDateDate of application.
Trait Implementations§
Source§impl Clone for OnAccountApplication
impl Clone for OnAccountApplication
Source§fn clone(&self) -> OnAccountApplication
fn clone(&self) -> OnAccountApplication
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 OnAccountApplication
impl Debug for OnAccountApplication
Source§impl<'de> Deserialize<'de> for OnAccountApplication
impl<'de> Deserialize<'de> for OnAccountApplication
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 OnAccountApplication
impl RefUnwindSafe for OnAccountApplication
impl Send for OnAccountApplication
impl Sync for OnAccountApplication
impl Unpin for OnAccountApplication
impl UnwindSafe for OnAccountApplication
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