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<'de> Deserialize<'de> for DateTimeField
impl<'de> Deserialize<'de> for DateTimeField
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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<DateTimeField> for DateTimeField
impl PartialEq<DateTimeField> 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<DateTimeField> for DateTimeField
impl PartialOrd<DateTimeField> 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 more