pub struct IncomeSchema {
pub type_: String,
pub yearly_income: Option<Value>,
pub description: Option<String>,
}
Fields§
§type_: String
ENUM describing what type of income this is
yearly_income: Option<Value>
§description: Option<String>
A description of this income.
Trait Implementations§
Source§impl Debug for IncomeSchema
impl Debug for IncomeSchema
Source§impl<'de> Deserialize<'de> for IncomeSchema
impl<'de> Deserialize<'de> for IncomeSchema
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 IncomeSchema
impl Display for IncomeSchema
Auto Trait Implementations§
impl Freeze for IncomeSchema
impl RefUnwindSafe for IncomeSchema
impl Send for IncomeSchema
impl Sync for IncomeSchema
impl Unpin for IncomeSchema
impl UnwindSafe for IncomeSchema
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