pub enum DateTimePrecision {
Precision0,
Precision1,
Precision2,
Precision3,
Precision4,
Precision5,
Precision6,
Precision7,
Precision8,
Precision9,
}
Expand description
DateTime64 precision. Defined as an enum, as it is valid only in the range from 0 to 9. See also: https://clickhouse.com/docs/sql-reference/data-types/datetime64
Variants§
Precision0
Precision1
Precision2
Precision3
Precision4
Precision5
Precision6
Precision7
Precision8
Precision9
Trait Implementations§
Source§impl Clone for DateTimePrecision
impl Clone for DateTimePrecision
Source§fn clone(&self) -> DateTimePrecision
fn clone(&self) -> DateTimePrecision
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 DateTimePrecision
impl Debug for DateTimePrecision
Source§impl Display for DateTimePrecision
impl Display for DateTimePrecision
Source§impl PartialEq for DateTimePrecision
impl PartialEq for DateTimePrecision
impl StructuralPartialEq for DateTimePrecision
Auto Trait Implementations§
impl Freeze for DateTimePrecision
impl RefUnwindSafe for DateTimePrecision
impl Send for DateTimePrecision
impl Sync for DateTimePrecision
impl Unpin for DateTimePrecision
impl UnwindSafe for DateTimePrecision
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