pub struct ConsumerLendingIncomeSchema {
pub type_: Option<String>,
pub yearly_income: Option<f64>,
pub description: Option<String>,
}
Fields§
§type_: Option<String>
§yearly_income: Option<f64>
Yearly income
description: Option<String>
Description of income source
Trait Implementations§
Source§impl Debug for ConsumerLendingIncomeSchema
impl Debug for ConsumerLendingIncomeSchema
Source§impl<'de> Deserialize<'de> for ConsumerLendingIncomeSchema
impl<'de> Deserialize<'de> for ConsumerLendingIncomeSchema
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 ConsumerLendingIncomeSchema
impl RefUnwindSafe for ConsumerLendingIncomeSchema
impl Send for ConsumerLendingIncomeSchema
impl Sync for ConsumerLendingIncomeSchema
impl Unpin for ConsumerLendingIncomeSchema
impl UnwindSafe for ConsumerLendingIncomeSchema
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