pub struct OtherMortgageSchema {
pub credit_limit: Option<f64>,
pub creditor_name: Option<String>,
pub lien_amount: Option<f64>,
pub lien_type: Option<String>,
pub loan_amount: Option<f64>,
pub monthly_payment: Option<f64>,
pub type_: Option<String>,
pub will_pay_off: Option<bool>,
}Fields§
§credit_limit: Option<f64>Credit Limit in dollars and cents
creditor_name: Option<String>Creditor Name
lien_amount: Option<f64>Lien Amount
lien_type: Option<String>Lien Type ENUM
loan_amount: Option<f64>Loan Amount
monthly_payment: Option<f64>Monthly Payment in dollars and cents
type_: Option<String>Mortgage Type
will_pay_off: Option<bool>Will pay off this mortgage at or before closing
Trait Implementations§
Source§impl Debug for OtherMortgageSchema
impl Debug for OtherMortgageSchema
Source§impl<'de> Deserialize<'de> for OtherMortgageSchema
impl<'de> Deserialize<'de> for OtherMortgageSchema
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
Source§impl Display for OtherMortgageSchema
impl Display for OtherMortgageSchema
Auto Trait Implementations§
impl Freeze for OtherMortgageSchema
impl RefUnwindSafe for OtherMortgageSchema
impl Send for OtherMortgageSchema
impl Sync for OtherMortgageSchema
impl Unpin for OtherMortgageSchema
impl UnwindSafe for OtherMortgageSchema
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