pub struct now;
Expand description
Represents the SQL CURRENT_TIMESTAMP
constant. This is equivalent to the
NOW()
function on backends that support it.
Trait Implementations
sourceimpl<Rhs> Add<Rhs> for nowwhere
Rhs: AsExpression<<<now as Expression>::SqlType as Add>::Rhs>,
impl<Rhs> Add<Rhs> for nowwhere
Rhs: AsExpression<<<now as Expression>::SqlType as Add>::Rhs>,
type Output = Add<now, <Rhs as AsExpression<<<now as Expression>::SqlType as Add>::Rhs>>::Expression>
type Output = Add<now, <Rhs as AsExpression<<<now as Expression>::SqlType as Add>::Rhs>>::Expression>
The resulting type after applying the
+
operator.sourceimpl AsExpression<Nullable<Timestamp>> for now
impl AsExpression<Nullable<Timestamp>> for now
type Expression = Coerce<now, Nullable<Timestamp>>
type Expression = Coerce<now, Nullable<Timestamp>>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl Expression for now
impl Expression for now
sourceimpl QueryId for now
impl QueryId for now
sourceconst HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by
Self
be uniquely identified by its type? Read moresourceimpl<Rhs> Sub<Rhs> for nowwhere
Rhs: AsExpression<<<now as Expression>::SqlType as Sub>::Rhs>,
impl<Rhs> Sub<Rhs> for nowwhere
Rhs: AsExpression<<<now as Expression>::SqlType as Sub>::Rhs>,
type Output = Sub<now, <Rhs as AsExpression<<<now as Expression>::SqlType as Sub>::Rhs>>::Expression>
type Output = Sub<now, <Rhs as AsExpression<<<now as Expression>::SqlType as Sub>::Rhs>>::Expression>
The resulting type after applying the
-
operator.sourceimpl<__GroupByClause> ValidGrouping<__GroupByClause> for now
impl<__GroupByClause> ValidGrouping<__GroupByClause> for now
type IsAggregate = Never
type IsAggregate = Never
Is this expression aggregate? Read more
impl<QS> AppearsOnTable<QS> for nowwhere
now: Expression,
impl Copy for now
impl<QS> SelectableExpression<QS> for nowwhere
now: AppearsOnTable<QS>,
Auto Trait Implementations
impl RefUnwindSafe for now
impl Send for now
impl Sync for now
impl Unpin for now
impl UnwindSafe for now
Blanket Implementations
sourceimpl<T, ST> AsExpression<ST> for Twhere
T: Expression<SqlType = ST>,
ST: SqlType + TypedExpressionType,
impl<T, ST> AsExpression<ST> for Twhere
T: Expression<SqlType = ST>,
ST: SqlType + TypedExpressionType,
type Expression = T
type Expression = T
The expression being returned
sourcefn as_expression(self) -> T
fn as_expression(self) -> T
Perform the conversion
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere
Conn: Connection<Backend = DB>,
DB: Backend,
T: QueryFragment<DB, NotSpecialized> + QueryId,
impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere
Conn: Connection<Backend = DB>,
DB: Backend,
T: QueryFragment<DB, NotSpecialized> + QueryId,
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourcefn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
Convert
self
to an expression for Diesel’s query builder. Read moresourcefn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more