pub struct RecurrencePattern {
pub _type: RecurrencePatternType,
pub interval: i32,
pub month: i32,
pub day_of_month: i32,
pub days_of_week: Vec<DayOfWeek>,
pub first_day_of_week: DayOfWeek,
pub index: WeekIndex,
}
Fields§
§_type: RecurrencePatternType
§interval: i32
§month: i32
§day_of_month: i32
§days_of_week: Vec<DayOfWeek>
§first_day_of_week: DayOfWeek
§index: WeekIndex
Trait Implementations§
Source§impl Clone for RecurrencePattern
impl Clone for RecurrencePattern
Source§fn clone(&self) -> RecurrencePattern
fn clone(&self) -> RecurrencePattern
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 RecurrencePattern
impl Debug for RecurrencePattern
Source§impl<'de> Deserialize<'de> for RecurrencePattern
impl<'de> Deserialize<'de> for RecurrencePattern
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 RecurrencePattern
impl PartialEq for RecurrencePattern
Source§impl Serialize for RecurrencePattern
impl Serialize for RecurrencePattern
impl Eq for RecurrencePattern
impl StructuralPartialEq for RecurrencePattern
Auto Trait Implementations§
impl Freeze for RecurrencePattern
impl RefUnwindSafe for RecurrencePattern
impl Send for RecurrencePattern
impl Sync for RecurrencePattern
impl Unpin for RecurrencePattern
impl UnwindSafe for RecurrencePattern
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