pub struct P2PPaymentBehavior {
pub late_payment_rate: f64,
pub late_payment_distribution: LatePaymentDistribution,
pub partial_payment_rate: f64,
pub payment_correction_rate: f64,
}Expand description
Payment behavior configuration for P2P.
Fields§
§late_payment_rate: f64Rate of late payments (beyond due date)
late_payment_distribution: LatePaymentDistributionDistribution of late payment days
partial_payment_rate: f64Rate of partial payments
payment_correction_rate: f64Rate of payment corrections
Trait Implementations§
Source§impl Clone for P2PPaymentBehavior
impl Clone for P2PPaymentBehavior
Source§fn clone(&self) -> P2PPaymentBehavior
fn clone(&self) -> P2PPaymentBehavior
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 P2PPaymentBehavior
impl Debug for P2PPaymentBehavior
Auto Trait Implementations§
impl Freeze for P2PPaymentBehavior
impl RefUnwindSafe for P2PPaymentBehavior
impl Send for P2PPaymentBehavior
impl Sync for P2PPaymentBehavior
impl Unpin for P2PPaymentBehavior
impl UnwindSafe for P2PPaymentBehavior
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