pub enum DateFieldExtractStyle {
DatePart,
Extract,
}
Expand description
Datetime subfield extraction style for unparsing
<https://www.postgresql.org/docs/current/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT>
Different DBMSs follow different standards; popular ones are:
date_part(‘YEAR’, date ‘2001-02-16’)
EXTRACT(YEAR from date ‘2001-02-16’)
Some DBMSs, like Postgres, support both, whereas others like MySQL require EXTRACT.
Variants§
Trait Implementations§
source§impl Clone for DateFieldExtractStyle
impl Clone for DateFieldExtractStyle
source§fn clone(&self) -> DateFieldExtractStyle
fn clone(&self) -> DateFieldExtractStyle
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 PartialEq for DateFieldExtractStyle
impl PartialEq for DateFieldExtractStyle
impl Copy for DateFieldExtractStyle
impl StructuralPartialEq for DateFieldExtractStyle
Auto Trait Implementations§
impl Freeze for DateFieldExtractStyle
impl RefUnwindSafe for DateFieldExtractStyle
impl Send for DateFieldExtractStyle
impl Sync for DateFieldExtractStyle
impl Unpin for DateFieldExtractStyle
impl UnwindSafe for DateFieldExtractStyle
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)