pub(crate) struct DateTimeRecord {
pub(crate) date: Option<DateRecord>,
pub(crate) time: Option<TimeRecord>,
pub(crate) time_zone: Option<UtcOffsetRecordOrZ>,
}Expand description
A DateTime Parse Node that contains the date, time, and offset info.
Fields§
§date: Option<DateRecord>Date
time: Option<TimeRecord>Time
time_zone: Option<UtcOffsetRecordOrZ>Tz Offset
Trait Implementations§
Source§impl Clone for DateTimeRecord
impl Clone for DateTimeRecord
Source§fn clone(&self) -> DateTimeRecord
fn clone(&self) -> DateTimeRecord
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 DateTimeRecord
impl Debug for DateTimeRecord
Source§impl Default for DateTimeRecord
impl Default for DateTimeRecord
Source§fn default() -> DateTimeRecord
fn default() -> DateTimeRecord
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DateTimeRecord
impl RefUnwindSafe for DateTimeRecord
impl Send for DateTimeRecord
impl Sync for DateTimeRecord
impl Unpin for DateTimeRecord
impl UnsafeUnpin for DateTimeRecord
impl UnwindSafe for DateTimeRecord
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