pub struct ConsumerLendingLiabilitySchema {
pub type_: String,
pub monthly_payment: f64,
pub months_left_to_pay: f64,
pub unpaid_balance: f64,
}
Fields§
§type_: String
§monthly_payment: f64
Monthly payment
months_left_to_pay: f64
Months left to pay
unpaid_balance: f64
Unpaid balance
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ConsumerLendingLiabilitySchema
impl<'de> Deserialize<'de> for ConsumerLendingLiabilitySchema
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 ConsumerLendingLiabilitySchema
impl RefUnwindSafe for ConsumerLendingLiabilitySchema
impl Send for ConsumerLendingLiabilitySchema
impl Sync for ConsumerLendingLiabilitySchema
impl Unpin for ConsumerLendingLiabilitySchema
impl UnwindSafe for ConsumerLendingLiabilitySchema
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