#[repr(i32)]pub enum RecurrenceType {
FixedSchedule = 0,
AfterCompletion = 1,
Unknown(i32),
}Expand description
Recurrence mode (rr.tp).
Variants§
FixedSchedule = 0
Fixed schedule cadence.
AfterCompletion = 1
Interval anchored after completion date.
Unknown(i32)
Unknown value preserved for forward compatibility.
Trait Implementations§
Source§impl Clone for RecurrenceType
impl Clone for RecurrenceType
Source§fn clone(&self) -> RecurrenceType
fn clone(&self) -> RecurrenceType
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 RecurrenceType
impl Debug for RecurrenceType
Source§impl Default for RecurrenceType
impl Default for RecurrenceType
Source§impl<'de> Deserialize<'de> for RecurrenceType
impl<'de> Deserialize<'de> for RecurrenceType
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 Display for RecurrenceType
impl Display for RecurrenceType
Source§impl From<RecurrenceType> for i32
impl From<RecurrenceType> for i32
Source§fn from(enum_value: RecurrenceType) -> Self
fn from(enum_value: RecurrenceType) -> Self
Converts to this type from the input type.
Source§impl From<i32> for RecurrenceType
impl From<i32> for RecurrenceType
Source§impl FromPrimitive for RecurrenceType
impl FromPrimitive for RecurrenceType
Source§impl FromStr for RecurrenceType
impl FromStr for RecurrenceType
Source§impl PartialEq for RecurrenceType
impl PartialEq for RecurrenceType
Source§impl Serialize for RecurrenceType
impl Serialize for RecurrenceType
Source§impl TryFrom<&str> for RecurrenceType
impl TryFrom<&str> for RecurrenceType
impl Copy for RecurrenceType
impl Eq for RecurrenceType
impl StructuralPartialEq for RecurrenceType
Auto Trait Implementations§
impl Freeze for RecurrenceType
impl RefUnwindSafe for RecurrenceType
impl Send for RecurrenceType
impl Sync for RecurrenceType
impl Unpin for RecurrenceType
impl UnsafeUnpin for RecurrenceType
impl UnwindSafe for RecurrenceType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.