pub struct TimestampAddExpression<'a> {
pub timestamp_add_span: Span,
pub unit: (TimeUnit, Span),
pub interval: Expression<'a>,
pub datetime: Expression<'a>,
}Expand description
Timestampadd call
Fields§
§timestamp_add_span: SpanSpan of “TIMESTAMPADD”
unit: (TimeUnit, Span)Unit of the interval
interval: Expression<'a>Interval expression
datetime: Expression<'a>Datetime expression
Trait Implementations§
Source§impl<'a> Clone for TimestampAddExpression<'a>
impl<'a> Clone for TimestampAddExpression<'a>
Source§fn clone(&self) -> TimestampAddExpression<'a>
fn clone(&self) -> TimestampAddExpression<'a>
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<'a> Debug for TimestampAddExpression<'a>
impl<'a> Debug for TimestampAddExpression<'a>
Auto Trait Implementations§
impl<'a> Freeze for TimestampAddExpression<'a>
impl<'a> RefUnwindSafe for TimestampAddExpression<'a>
impl<'a> Send for TimestampAddExpression<'a>
impl<'a> Sync for TimestampAddExpression<'a>
impl<'a> Unpin for TimestampAddExpression<'a>
impl<'a> UnsafeUnpin for TimestampAddExpression<'a>
impl<'a> UnwindSafe for TimestampAddExpression<'a>
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