pub enum RecurrenceError {
InvalidInterval,
InvalidDate,
DateOverflow,
}Variants§
Trait Implementations§
Source§impl Clone for RecurrenceError
impl Clone for RecurrenceError
Source§fn clone(&self) -> RecurrenceError
fn clone(&self) -> RecurrenceError
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 RecurrenceError
impl Debug for RecurrenceError
Source§impl PartialEq for RecurrenceError
impl PartialEq for RecurrenceError
Source§fn eq(&self, other: &RecurrenceError) -> bool
fn eq(&self, other: &RecurrenceError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RecurrenceError
impl Eq for RecurrenceError
impl StructuralPartialEq for RecurrenceError
Auto Trait Implementations§
impl Freeze for RecurrenceError
impl RefUnwindSafe for RecurrenceError
impl Send for RecurrenceError
impl Sync for RecurrenceError
impl Unpin for RecurrenceError
impl UnsafeUnpin for RecurrenceError
impl UnwindSafe for RecurrenceError
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