pub enum IntervalType {
Nanosecond,
Microsecond,
Millisecond,
Second,
Minute,
Hour,
Day,
Week,
Month,
Quarter,
Year,
}
Expand description
Represents the type of an interval. See also: https://clickhouse.com/docs/sql-reference/data-types/special-data-types/interval
Variants§
Trait Implementations§
Source§impl Clone for IntervalType
impl Clone for IntervalType
Source§fn clone(&self) -> IntervalType
fn clone(&self) -> IntervalType
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 IntervalType
impl Debug for IntervalType
Source§impl Display for IntervalType
impl Display for IntervalType
Source§impl FromStr for IntervalType
impl FromStr for IntervalType
Source§impl PartialEq for IntervalType
impl PartialEq for IntervalType
impl StructuralPartialEq for IntervalType
Auto Trait Implementations§
impl Freeze for IntervalType
impl RefUnwindSafe for IntervalType
impl Send for IntervalType
impl Sync for IntervalType
impl Unpin for IntervalType
impl UnwindSafe for IntervalType
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