pub struct YearlyRecurrenceSchedule { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for YearlyRecurrenceSchedule
impl Clone for YearlyRecurrenceSchedule
Source§fn clone(&self) -> YearlyRecurrenceSchedule
fn clone(&self) -> YearlyRecurrenceSchedule
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 YearlyRecurrenceSchedule
impl Debug for YearlyRecurrenceSchedule
Source§impl PartialEq for YearlyRecurrenceSchedule
impl PartialEq for YearlyRecurrenceSchedule
Source§fn eq(&self, other: &YearlyRecurrenceSchedule) -> bool
fn eq(&self, other: &YearlyRecurrenceSchedule) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Schedule for YearlyRecurrenceSchedule
impl Schedule for YearlyRecurrenceSchedule
Source§fn next_occurrence_after(&self, value: Date) -> Date
fn next_occurrence_after(&self, value: Date) -> Date
Provides the next scheduled date on this schedule after the given date.
Source§fn into_string(self, starting: Date) -> String
fn into_string(self, starting: Date) -> String
Converts this schedule into a string that can be parsed, given the same starting date, into
the same schedule.
impl Eq for YearlyRecurrenceSchedule
impl StructuralPartialEq for YearlyRecurrenceSchedule
Auto Trait Implementations§
impl Freeze for YearlyRecurrenceSchedule
impl RefUnwindSafe for YearlyRecurrenceSchedule
impl Send for YearlyRecurrenceSchedule
impl Sync for YearlyRecurrenceSchedule
impl Unpin for YearlyRecurrenceSchedule
impl UnsafeUnpin for YearlyRecurrenceSchedule
impl UnwindSafe for YearlyRecurrenceSchedule
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