pub enum DynDateTimeKind {
Offset {
offset_minutes: i16,
},
LocalDateTime,
LocalDate,
LocalTime,
}Expand description
The kind of datetime value (for dynamic value datetime support).
Variants§
Offset
Offset date-time with UTC offset in minutes.
LocalDateTime
Local date-time without offset (civil time).
LocalDate
Local date only.
LocalTime
Local time only.
Trait Implementations§
Source§impl Clone for DynDateTimeKind
impl Clone for DynDateTimeKind
Source§fn clone(&self) -> DynDateTimeKind
fn clone(&self) -> DynDateTimeKind
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 DynDateTimeKind
impl Debug for DynDateTimeKind
Source§impl PartialEq for DynDateTimeKind
impl PartialEq for DynDateTimeKind
impl Copy for DynDateTimeKind
impl Eq for DynDateTimeKind
impl StructuralPartialEq for DynDateTimeKind
Auto Trait Implementations§
impl Freeze for DynDateTimeKind
impl RefUnwindSafe for DynDateTimeKind
impl Send for DynDateTimeKind
impl Sync for DynDateTimeKind
impl Unpin for DynDateTimeKind
impl UnwindSafe for DynDateTimeKind
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