pub struct StandingOrderRecurrance {
pub start_date: NaiveDate,
pub frequency: Option<Frequency>,
pub interval: Option<i32>,
pub count: Option<i32>,
pub until_date: NaiveDate,
}Expand description
Recurrence rules of a standing order
Fields§
§start_date: NaiveDateDate that the first standing order payment should be made
frequency: Option<Frequency>Frequency of which payments should be made
interval: Option<i32>Interval of specified frequency on which payments should be made
count: Option<i32>Number of payments that should be made before standing order is stopped
until_date: NaiveDateDate on which to stop standing order
Trait Implementations§
Source§impl Clone for StandingOrderRecurrance
impl Clone for StandingOrderRecurrance
Source§fn clone(&self) -> StandingOrderRecurrance
fn clone(&self) -> StandingOrderRecurrance
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 StandingOrderRecurrance
impl Debug for StandingOrderRecurrance
Source§impl<'de> Deserialize<'de> for StandingOrderRecurrance
impl<'de> Deserialize<'de> for StandingOrderRecurrance
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 PartialEq for StandingOrderRecurrance
impl PartialEq for StandingOrderRecurrance
impl Eq for StandingOrderRecurrance
impl StructuralPartialEq for StandingOrderRecurrance
Auto Trait Implementations§
impl Freeze for StandingOrderRecurrance
impl RefUnwindSafe for StandingOrderRecurrance
impl Send for StandingOrderRecurrance
impl Sync for StandingOrderRecurrance
impl Unpin for StandingOrderRecurrance
impl UnwindSafe for StandingOrderRecurrance
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