Enum sqlparser::ast::DateTimeField
source · pub enum DateTimeField {
Show 29 variants
Year,
Month,
Week,
Day,
Date,
Hour,
Minute,
Second,
Century,
Decade,
Dow,
Doy,
Epoch,
Isodow,
Isoyear,
Julian,
Microsecond,
Microseconds,
Millenium,
Millennium,
Millisecond,
Milliseconds,
Nanosecond,
Nanoseconds,
Quarter,
Timezone,
TimezoneHour,
TimezoneMinute,
NoDateTime,
}
Variants§
Year
Month
Week
Day
Date
Hour
Minute
Second
Century
Decade
Dow
Doy
Epoch
Isodow
Isoyear
Julian
Microsecond
Microseconds
Millenium
Millennium
Millisecond
Milliseconds
Nanosecond
Nanoseconds
Quarter
Timezone
TimezoneHour
TimezoneMinute
NoDateTime
Trait Implementations§
source§impl Clone for DateTimeField
impl Clone for DateTimeField
source§fn clone(&self) -> DateTimeField
fn clone(&self) -> DateTimeField
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 DateTimeField
impl Debug for DateTimeField
source§impl Display for DateTimeField
impl Display for DateTimeField
source§impl Hash for DateTimeField
impl Hash for DateTimeField
source§impl Ord for DateTimeField
impl Ord for DateTimeField
source§fn cmp(&self, other: &DateTimeField) -> Ordering
fn cmp(&self, other: &DateTimeField) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DateTimeField
impl PartialEq for DateTimeField
source§fn eq(&self, other: &DateTimeField) -> bool
fn eq(&self, other: &DateTimeField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DateTimeField
impl PartialOrd for DateTimeField
source§fn partial_cmp(&self, other: &DateTimeField) -> Option<Ordering>
fn partial_cmp(&self, other: &DateTimeField) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for DateTimeField
impl Eq for DateTimeField
impl StructuralEq for DateTimeField
impl StructuralPartialEq for DateTimeField
Auto Trait Implementations§
impl RefUnwindSafe for DateTimeField
impl Send for DateTimeField
impl Sync for DateTimeField
impl Unpin for DateTimeField
impl UnwindSafe for DateTimeField
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