pub struct HistoricalAnnualIncome {
pub baseline_amount: f64,
pub current_amount: f64,
}Expand description
An object representing the historical annual income amount.
Fields§
§baseline_amount: f64The historical annual income at the time of subscription
current_amount: f64The current historical annual income
Trait Implementations§
Source§impl Clone for HistoricalAnnualIncome
impl Clone for HistoricalAnnualIncome
Source§fn clone(&self) -> HistoricalAnnualIncome
fn clone(&self) -> HistoricalAnnualIncome
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HistoricalAnnualIncome
impl Debug for HistoricalAnnualIncome
Source§impl Default for HistoricalAnnualIncome
impl Default for HistoricalAnnualIncome
Source§fn default() -> HistoricalAnnualIncome
fn default() -> HistoricalAnnualIncome
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoricalAnnualIncome
impl<'de> Deserialize<'de> for HistoricalAnnualIncome
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 HistoricalAnnualIncome
impl Display for HistoricalAnnualIncome
Auto Trait Implementations§
impl Freeze for HistoricalAnnualIncome
impl RefUnwindSafe for HistoricalAnnualIncome
impl Send for HistoricalAnnualIncome
impl Sync for HistoricalAnnualIncome
impl Unpin for HistoricalAnnualIncome
impl UnwindSafe for HistoricalAnnualIncome
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