pub struct CalendarState {
pub year: i32,
pub month: u32,
pub selected_day: Option<u32>,
/* private fields */
}Fields§
§year: i32§month: u32§selected_day: Option<u32>Implementations§
Source§impl CalendarState
impl CalendarState
Trait Implementations§
Source§impl Clone for CalendarState
impl Clone for CalendarState
Source§fn clone(&self) -> CalendarState
fn clone(&self) -> CalendarState
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 CalendarState
impl Debug for CalendarState
Auto Trait Implementations§
impl Freeze for CalendarState
impl RefUnwindSafe for CalendarState
impl Send for CalendarState
impl Sync for CalendarState
impl Unpin for CalendarState
impl UnsafeUnpin for CalendarState
impl UnwindSafe for CalendarState
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