pub struct DatePickerValue {
pub year: u16,
pub month: u16,
pub day: u16,
}
Expand description
A date struct that can be passed to a date time picker control. Fields are self explanatory.
Fields§
§year: u16
§month: u16
§day: u16
Trait Implementations§
Source§impl Clone for DatePickerValue
impl Clone for DatePickerValue
Source§fn clone(&self) -> DatePickerValue
fn clone(&self) -> DatePickerValue
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 DatePickerValue
impl Debug for DatePickerValue
Source§impl PartialEq for DatePickerValue
impl PartialEq for DatePickerValue
impl Copy for DatePickerValue
impl StructuralPartialEq for DatePickerValue
Auto Trait Implementations§
impl Freeze for DatePickerValue
impl RefUnwindSafe for DatePickerValue
impl Send for DatePickerValue
impl Sync for DatePickerValue
impl Unpin for DatePickerValue
impl UnwindSafe for DatePickerValue
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