pub struct TransactionDetails {
pub net_received_amount: f64,
pub total_paid_amount: f64,
pub overpaid_amount: i64,
pub installment_amount: f64,
}Fields§
§net_received_amount: f64§total_paid_amount: f64§overpaid_amount: i64§installment_amount: f64Trait Implementations§
Source§impl Clone for TransactionDetails
impl Clone for TransactionDetails
Source§fn clone(&self) -> TransactionDetails
fn clone(&self) -> TransactionDetails
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 TransactionDetails
impl Debug for TransactionDetails
Source§impl Default for TransactionDetails
impl Default for TransactionDetails
Source§fn default() -> TransactionDetails
fn default() -> TransactionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionDetails
impl<'de> Deserialize<'de> for TransactionDetails
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
Source§impl PartialEq for TransactionDetails
impl PartialEq for TransactionDetails
Source§impl Serialize for TransactionDetails
impl Serialize for TransactionDetails
impl StructuralPartialEq for TransactionDetails
Auto Trait Implementations§
impl Freeze for TransactionDetails
impl RefUnwindSafe for TransactionDetails
impl Send for TransactionDetails
impl Sync for TransactionDetails
impl Unpin for TransactionDetails
impl UnwindSafe for TransactionDetails
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