pub struct DateTimeValues {
pub year: u16,
pub month: Month,
pub day: u8,
pub day_of_week: DayOfWeek,
pub hour: u8,
pub minute: u8,
pub seconds: u8,
}
Fields§
§year: u16
§month: Month
§day: u8
§day_of_week: DayOfWeek
§hour: u8
§minute: u8
§seconds: u8
Trait Implementations§
Source§impl Clone for DateTimeValues
impl Clone for DateTimeValues
Source§fn clone(&self) -> DateTimeValues
fn clone(&self) -> DateTimeValues
Returns a copy 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 DateTimeValues
impl Debug for DateTimeValues
Source§impl PartialEq for DateTimeValues
impl PartialEq for DateTimeValues
impl Copy for DateTimeValues
impl StructuralPartialEq for DateTimeValues
Auto Trait Implementations§
impl Freeze for DateTimeValues
impl RefUnwindSafe for DateTimeValues
impl Send for DateTimeValues
impl Sync for DateTimeValues
impl Unpin for DateTimeValues
impl UnwindSafe for DateTimeValues
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