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