pub struct DebtRecoveryItem {
pub recovery_amount: Option<Box<Currency>>,
pub original_amount: Option<Box<Currency>>,
pub group_begin_date: Option<String>,
pub group_end_date: Option<String>,
}Expand description
DebtRecoveryItem : An item of a debt payment or debt adjustment.
Fields
recovery_amount: Option<Box<Currency>>original_amount: Option<Box<Currency>>group_begin_date: Option<String>group_end_date: Option<String>Implementations
sourceimpl DebtRecoveryItem
impl DebtRecoveryItem
sourcepub fn new() -> DebtRecoveryItem
pub fn new() -> DebtRecoveryItem
An item of a debt payment or debt adjustment.
Trait Implementations
sourceimpl Clone for DebtRecoveryItem
impl Clone for DebtRecoveryItem
sourcefn clone(&self) -> DebtRecoveryItem
fn clone(&self) -> DebtRecoveryItem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DebtRecoveryItem
impl Debug for DebtRecoveryItem
sourceimpl Default for DebtRecoveryItem
impl Default for DebtRecoveryItem
sourcefn default() -> DebtRecoveryItem
fn default() -> DebtRecoveryItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for DebtRecoveryItem
impl<'de> Deserialize<'de> for DebtRecoveryItem
sourcefn 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
sourceimpl PartialEq<DebtRecoveryItem> for DebtRecoveryItem
impl PartialEq<DebtRecoveryItem> for DebtRecoveryItem
sourcefn eq(&self, other: &DebtRecoveryItem) -> bool
fn eq(&self, other: &DebtRecoveryItem) -> bool
sourceimpl Serialize for DebtRecoveryItem
impl Serialize for DebtRecoveryItem
impl StructuralPartialEq for DebtRecoveryItem
Auto Trait Implementations
impl RefUnwindSafe for DebtRecoveryItem
impl Send for DebtRecoveryItem
impl Sync for DebtRecoveryItem
impl Unpin for DebtRecoveryItem
impl UnwindSafe for DebtRecoveryItem
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more