pub struct ShortPaymentReasonDistribution {
pub pricing_dispute: f64,
pub quality_issue: f64,
pub quantity_discrepancy: f64,
pub unauthorized_deduction: f64,
pub incorrect_discount: f64,
}Expand description
Distribution of short payment reasons.
Fields§
§pricing_dispute: f64Pricing dispute
quality_issue: f64Quality issue
quantity_discrepancy: f64Quantity discrepancy
Unauthorized deduction
incorrect_discount: f64Early payment discount taken incorrectly
Trait Implementations§
Source§impl Clone for ShortPaymentReasonDistribution
impl Clone for ShortPaymentReasonDistribution
Source§fn clone(&self) -> ShortPaymentReasonDistribution
fn clone(&self) -> ShortPaymentReasonDistribution
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<'de> Deserialize<'de> for ShortPaymentReasonDistribution
impl<'de> Deserialize<'de> for ShortPaymentReasonDistribution
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 ShortPaymentReasonDistribution
impl RefUnwindSafe for ShortPaymentReasonDistribution
impl Send for ShortPaymentReasonDistribution
impl Sync for ShortPaymentReasonDistribution
impl Unpin for ShortPaymentReasonDistribution
impl UnwindSafe for ShortPaymentReasonDistribution
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