pub struct ArPaymentApplication {
pub id: Uuid,
pub payment_id: Uuid,
pub invoice_id: Uuid,
pub applied_amount: Decimal,
pub applied_date: DateTime<Utc>,
pub created_at: DateTime<Utc>,
}Expand description
AR payment application (maps payments to invoices)
Fields§
§id: Uuid§payment_id: Uuid§invoice_id: Uuid§applied_amount: Decimal§applied_date: DateTime<Utc>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for ArPaymentApplication
impl Clone for ArPaymentApplication
Source§fn clone(&self) -> ArPaymentApplication
fn clone(&self) -> ArPaymentApplication
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ArPaymentApplication
impl Debug for ArPaymentApplication
Source§impl<'de> Deserialize<'de> for ArPaymentApplication
impl<'de> Deserialize<'de> for ArPaymentApplication
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ArPaymentApplication, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ArPaymentApplication, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ArPaymentApplication
impl Serialize for ArPaymentApplication
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ArPaymentApplication
impl RefUnwindSafe for ArPaymentApplication
impl Send for ArPaymentApplication
impl Sync for ArPaymentApplication
impl Unpin for ArPaymentApplication
impl UnsafeUnpin for ArPaymentApplication
impl UnwindSafe for ArPaymentApplication
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