Struct diesel::pg::data_types::PgTimestamp [−][src]
pub struct PgTimestamp(pub i64);
Expand description
Timestamps are represented in Postgres as a 64 bit signed integer representing the number of microseconds since January 1st 2000. This struct is a dumb wrapper type, meant only to indicate the integer’s meaning.
Trait Implementations
type Expression = Bound<Nullable<Timestamp>, Self>
type Expression = Bound<Nullable<Timestamp>, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Nullable<Timestamp>, Self>
type Expression = Bound<Nullable<Timestamp>, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Nullable<Timestamptz>, Self>
type Expression = Bound<Nullable<Timestamptz>, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Nullable<Timestamptz>, Self>
type Expression = Bound<Nullable<Timestamptz>, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Timestamp, Self>
type Expression = Bound<Timestamp, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Timestamp, Self>
type Expression = Bound<Timestamp, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Timestamptz, Self>
type Expression = Bound<Timestamptz, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Timestamptz, Self>
type Expression = Bound<Timestamptz, Self>
The expression being returned
Perform the conversion
impl<__ST, __DB> FromSqlRow<__ST, __DB> for PgTimestamp where
__DB: Backend,
Self: FromSql<__ST, __DB>,
impl<__ST, __DB> FromSqlRow<__ST, __DB> for PgTimestamp where
__DB: Backend,
Self: FromSql<__ST, __DB>,
See the trait documentation.
The number of fields that this type will consume. Must be equal to
the number of times you would call row.take()
in build_from_row
Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
impl<__ST, __DB> Queryable<__ST, __DB> for PgTimestamp where
__DB: Backend,
Self: FromSql<__ST, __DB>,
impl<__ST, __DB> Queryable<__ST, __DB> for PgTimestamp where
__DB: Backend,
Self: FromSql<__ST, __DB>,
impl<__DB> ToSql<Nullable<Timestamptz>, __DB> for PgTimestamp where
__DB: Backend,
Self: ToSql<Timestamptz, __DB>,
impl<__DB> ToSql<Nullable<Timestamptz>, __DB> for PgTimestamp where
__DB: Backend,
Self: ToSql<Timestamptz, __DB>,
Auto Trait Implementations
impl RefUnwindSafe for PgTimestamp
impl Send for PgTimestamp
impl Sync for PgTimestamp
impl Unpin for PgTimestamp
impl UnwindSafe for PgTimestamp
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert self
to an expression for Diesel’s query builder. Read more