pub enum CalendarExportFileType {
PDF(CalendarExportFileTypePDF),
CSV(i32),
ICS(i32),
}Variants§
PDF(CalendarExportFileTypePDF)
CSV(i32)
The i32 represents the year
NOTE: Make sure the year is available
ICS(i32)
The i32 represents the year
NOTE: Make sure the year is available
Trait Implementations§
Source§impl Clone for CalendarExportFileType
impl Clone for CalendarExportFileType
Source§fn clone(&self) -> CalendarExportFileType
fn clone(&self) -> CalendarExportFileType
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 CalendarExportFileType
impl Debug for CalendarExportFileType
Source§impl Hash for CalendarExportFileType
impl Hash for CalendarExportFileType
Source§impl Ord for CalendarExportFileType
impl Ord for CalendarExportFileType
Source§fn cmp(&self, other: &CalendarExportFileType) -> Ordering
fn cmp(&self, other: &CalendarExportFileType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CalendarExportFileType
impl PartialEq for CalendarExportFileType
Source§impl PartialOrd for CalendarExportFileType
impl PartialOrd for CalendarExportFileType
impl Eq for CalendarExportFileType
impl StructuralPartialEq for CalendarExportFileType
Auto Trait Implementations§
impl Freeze for CalendarExportFileType
impl RefUnwindSafe for CalendarExportFileType
impl Send for CalendarExportFileType
impl Sync for CalendarExportFileType
impl Unpin for CalendarExportFileType
impl UnwindSafe for CalendarExportFileType
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.