pub struct MonthlyProps {
pub year: i32,
pub month: u8,
pub selected_day: Option<u8>,
}Fields§
§year: i32§month: u8§selected_day: Option<u8>Trait Implementations§
Source§impl Clone for MonthlyProps
impl Clone for MonthlyProps
Source§fn clone(&self) -> MonthlyProps
fn clone(&self) -> MonthlyProps
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 MonthlyProps
impl Debug for MonthlyProps
Source§impl PartialEq for MonthlyProps
impl PartialEq for MonthlyProps
impl Eq for MonthlyProps
impl StructuralPartialEq for MonthlyProps
Auto Trait Implementations§
impl Freeze for MonthlyProps
impl RefUnwindSafe for MonthlyProps
impl Send for MonthlyProps
impl Sync for MonthlyProps
impl Unpin for MonthlyProps
impl UnsafeUnpin for MonthlyProps
impl UnwindSafe for MonthlyProps
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