pub struct SIPStepUp {
pub amount: f64,
pub frequency: String,
pub next_step_up: Option<NaiveDate>,
}
Expand description
SIP step-up configuration
Fields§
§amount: f64
Step-up amount
frequency: String
Step-up frequency (yearly, half-yearly)
next_step_up: Option<NaiveDate>
Next step-up date
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SIPStepUp
impl<'de> Deserialize<'de> for SIPStepUp
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 SIPStepUp
impl RefUnwindSafe for SIPStepUp
impl Send for SIPStepUp
impl Sync for SIPStepUp
impl Unpin for SIPStepUp
impl UnwindSafe for SIPStepUp
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