Struct diesel::sql_types::Timestamp

source ·
pub struct Timestamp;
Expand description

The timestamp SQL type.

§ToSql impls

§FromSql impls

Trait Implementations§

source§

impl Add for Timestamp

§

type Rhs = Interval

The SQL type which can be added to this one
§

type Output = Timestamp

The SQL type of the result of adding Rhs to Self
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr MysqlTime

Available on crate feature mysql_backend only.
§

type Expression = Bound<Timestamp, &'__expr2 &'__expr MysqlTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr NaiveDateTime

Available on crate feature chrono only.
§

type Expression = Bound<Timestamp, &'__expr2 &'__expr NaiveDateTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr PgTimestamp

Available on crate feature postgres_backend only.
§

type Expression = Bound<Timestamp, &'__expr2 &'__expr PgTimestamp>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr PrimitiveDateTime

Available on crate feature time only.
§

type Expression = Bound<Timestamp, &'__expr2 &'__expr PrimitiveDateTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr String

§

type Expression = Bound<Timestamp, &'__expr2 &'__expr String>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr SystemTime

§

type Expression = Bound<Timestamp, &'__expr2 &'__expr SystemTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr, '__expr2> AsExpression<Timestamp> for &'__expr2 &'__expr str

§

type Expression = Bound<Timestamp, &'__expr2 &'__expr str>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr MysqlTime

Available on crate feature mysql_backend only.
§

type Expression = Bound<Timestamp, &'__expr MysqlTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr NaiveDateTime

Available on crate feature chrono only.
§

type Expression = Bound<Timestamp, &'__expr NaiveDateTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr PgTimestamp

Available on crate feature postgres_backend only.
§

type Expression = Bound<Timestamp, &'__expr PgTimestamp>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr PrimitiveDateTime

Available on crate feature time only.
§

type Expression = Bound<Timestamp, &'__expr PrimitiveDateTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr String

§

type Expression = Bound<Timestamp, &'__expr String>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr SystemTime

§

type Expression = Bound<Timestamp, &'__expr SystemTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'__expr> AsExpression<Timestamp> for &'__expr str

§

type Expression = Bound<Timestamp, &'__expr str>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Timestamp> for MysqlTime

Available on crate feature mysql_backend only.
§

type Expression = Bound<Timestamp, MysqlTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Timestamp> for NaiveDateTime

Available on crate feature chrono only.
§

type Expression = Bound<Timestamp, NaiveDateTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Timestamp> for PgTimestamp

Available on crate feature postgres_backend only.
§

type Expression = Bound<Timestamp, PgTimestamp>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Timestamp> for PrimitiveDateTime

Available on crate feature time only.
§

type Expression = Bound<Timestamp, PrimitiveDateTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Timestamp> for String

§

type Expression = Bound<Timestamp, String>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl AsExpression<Timestamp> for SystemTime

§

type Expression = Bound<Timestamp, SystemTime>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl Clone for Timestamp

source§

fn clone(&self) -> Timestamp

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Timestamp

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Timestamp

source§

fn default() -> Timestamp

Returns the “default value” for a type. Read more
source§

impl FromSql<Timestamp, Mysql> for MysqlTime

Available on crate feature mysql_backend only.
source§

fn from_sql(value: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Mysql> for NaiveDateTime

Available on crate features chrono and mysql_backend only.
source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Mysql> for OffsetDateTime

Available on crate features time and mysql_backend only.
source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Mysql> for PrimitiveDateTime

Available on crate features time and mysql_backend only.
source§

fn from_sql(bytes: MysqlValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Pg> for NaiveDateTime

Available on crate features chrono and postgres_backend only.
source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Pg> for PgTimestamp

Available on crate feature postgres_backend only.
source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Pg> for PrimitiveDateTime

Available on crate features time and postgres_backend only.
source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Pg> for SystemTime

Available on crate feature postgres_backend only.
source§

fn from_sql(bytes: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Sqlite> for NaiveDateTime

Available on crate features chrono and sqlite only.
source§

fn from_sql(value: <Sqlite as Backend>::RawValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Sqlite> for PrimitiveDateTime

Available on crate features time and sqlite only.
source§

fn from_sql(value: <Sqlite as Backend>::RawValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl FromSql<Timestamp, Sqlite> for String

Available on crate feature sqlite only.
source§

fn from_sql(value: SqliteValue<'_, '_, '_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl HasSqlType<Timestamp> for Mysql

source§

fn metadata(_: &mut ()) -> MysqlType

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Timestamp> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Timestamp> for Sqlite

source§

fn metadata(_: &mut ()) -> SqliteType

Fetch the metadata for the given type Read more
source§

impl QueryId for Timestamp

§

type QueryId = Timestamp

A type which uniquely represents Self in a SQL query. Read more
source§

const HAS_STATIC_QUERY_ID: bool = true

Can the SQL generated by Self be uniquely identified by its type? Read more
source§

fn query_id() -> Option<TypeId>

Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more
source§

impl SqlType for Timestamp

§

type IsNull = NotNull

Is this type nullable? Read more
source§

impl Sub for Timestamp

§

type Rhs = Interval

The SQL type which can be subtracted from this one
§

type Output = Timestamp

The SQL type of the result of subtracting Rhs from Self
source§

impl ToSql<Timestamp, Mysql> for MysqlTime

Available on crate feature mysql_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Mysql> for NaiveDateTime

Available on crate features chrono and mysql_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Mysql> for OffsetDateTime

Available on crate features time and mysql_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Mysql> for PrimitiveDateTime

Available on crate features time and mysql_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Mysql>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Pg> for NaiveDateTime

Available on crate features chrono and postgres_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Pg> for PgTimestamp

Available on crate feature postgres_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Pg> for PrimitiveDateTime

Available on crate features time and postgres_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Pg> for SystemTime

Available on crate feature postgres_backend only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Sqlite> for NaiveDateTime

Available on crate features chrono and sqlite only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Sqlite>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Sqlite> for PrimitiveDateTime

Available on crate features time and sqlite only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Sqlite>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Sqlite> for String

Available on crate feature sqlite only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Sqlite>) -> Result

See the trait documentation.
source§

impl ToSql<Timestamp, Sqlite> for str

Available on crate feature sqlite only.
source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Sqlite>) -> Result

See the trait documentation.
source§

impl Copy for Timestamp

source§

impl SingleValue for Timestamp

source§

impl SqlOrd for Timestamp

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<ST, U, DB> CompatibleType<U, DB> for ST
where DB: Backend, ST: SqlType + SingleValue, U: FromSqlRow<ST, DB>,

§

type SqlType = ST

Available on crate feature i-implement-a-third-party-backend-and-opt-into-breaking-changes only.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoNotNullable for T
where T: SqlType<IsNull = NotNull>,

§

type NotNullable = T

The not nullable representation of this type. Read more
source§

impl<T> IntoNullable for T
where T: SqlType<IsNull = NotNull> + SingleValue,

§

type Nullable = Nullable<T>

The nullable representation of this type. Read more
source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> AsExprOf<Self, T>

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<ST> TypedExpressionType for ST
where ST: SingleValue,