pub enum IcalRecurPart {
BySecond,
ByMinute,
ByHour,
ByDay,
ByMonthDay,
ByYearDay,
ByWeekNo,
ByMonth,
BySetPos,
}Expand description
A rule part, named so a problem can point at one.
Variants§
BySecond
BYSECOND.
ByMinute
BYMINUTE.
ByHour
BYHOUR.
ByDay
BYDAY.
ByMonthDay
BYMONTHDAY.
ByYearDay
BYYEARDAY.
ByWeekNo
BYWEEKNO.
ByMonth
BYMONTH.
BySetPos
BYSETPOS.
Trait Implementations§
Source§impl Clone for IcalRecurPart
impl Clone for IcalRecurPart
Source§fn clone(&self) -> IcalRecurPart
fn clone(&self) -> IcalRecurPart
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 moreimpl Copy for IcalRecurPart
Source§impl Debug for IcalRecurPart
impl Debug for IcalRecurPart
Source§impl Display for IcalRecurPart
impl Display for IcalRecurPart
impl Eq for IcalRecurPart
Source§impl PartialEq for IcalRecurPart
impl PartialEq for IcalRecurPart
impl StructuralPartialEq for IcalRecurPart
Auto Trait Implementations§
impl Freeze for IcalRecurPart
impl RefUnwindSafe for IcalRecurPart
impl Send for IcalRecurPart
impl Sync for IcalRecurPart
impl Unpin for IcalRecurPart
impl UnsafeUnpin for IcalRecurPart
impl UnwindSafe for IcalRecurPart
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