pub enum CalendarExportFileTypePDF {
CurrentDay,
NextDay,
CurrentWeek,
NextWeek,
YearSimple(i32),
YearDetailed(i32),
YearMonthView(i32),
}Variants§
CurrentDay
NextDay
CurrentWeek
NextWeek
YearSimple(i32)
The i32 represents the year
NOTE: Make sure the year is available
YearDetailed(i32)
The i32 represents the year
NOTE: Make sure the year is available
YearMonthView(i32)
The i32 represents the year
NOTE: Make sure the year is available
Trait Implementations§
Source§impl Clone for CalendarExportFileTypePDF
impl Clone for CalendarExportFileTypePDF
Source§fn clone(&self) -> CalendarExportFileTypePDF
fn clone(&self) -> CalendarExportFileTypePDF
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 CalendarExportFileTypePDF
impl Debug for CalendarExportFileTypePDF
Source§impl Hash for CalendarExportFileTypePDF
impl Hash for CalendarExportFileTypePDF
Source§impl Ord for CalendarExportFileTypePDF
impl Ord for CalendarExportFileTypePDF
Source§fn cmp(&self, other: &CalendarExportFileTypePDF) -> Ordering
fn cmp(&self, other: &CalendarExportFileTypePDF) -> 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 PartialOrd for CalendarExportFileTypePDF
impl PartialOrd for CalendarExportFileTypePDF
impl Eq for CalendarExportFileTypePDF
impl StructuralPartialEq for CalendarExportFileTypePDF
Auto Trait Implementations§
impl Freeze for CalendarExportFileTypePDF
impl RefUnwindSafe for CalendarExportFileTypePDF
impl Send for CalendarExportFileTypePDF
impl Sync for CalendarExportFileTypePDF
impl Unpin for CalendarExportFileTypePDF
impl UnwindSafe for CalendarExportFileTypePDF
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.