Struct diesel::pg::data_types::PgTimestamp
source · 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.
Tuple Fields§
§0: i64
Trait Implementations§
source§impl<'expr> AsExpression<Nullable<Timestamp>> for &'expr PgTimestamp
impl<'expr> AsExpression<Nullable<Timestamp>> for &'expr PgTimestamp
§type Expression = Bound<Nullable<Timestamp>, &'expr PgTimestamp>
type Expression = Bound<Nullable<Timestamp>, &'expr PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Nullable<Timestamp>> for PgTimestamp
impl AsExpression<Nullable<Timestamp>> for PgTimestamp
§type Expression = Bound<Nullable<Timestamp>, PgTimestamp>
type Expression = Bound<Nullable<Timestamp>, PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Nullable<Timestamptz>> for &'expr PgTimestamp
impl<'expr> AsExpression<Nullable<Timestamptz>> for &'expr PgTimestamp
§type Expression = Bound<Nullable<Timestamptz>, &'expr PgTimestamp>
type Expression = Bound<Nullable<Timestamptz>, &'expr PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Nullable<Timestamptz>> for PgTimestamp
impl AsExpression<Nullable<Timestamptz>> for PgTimestamp
§type Expression = Bound<Nullable<Timestamptz>, PgTimestamp>
type Expression = Bound<Nullable<Timestamptz>, PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Timestamp> for &'expr PgTimestamp
impl<'expr> AsExpression<Timestamp> for &'expr PgTimestamp
§type Expression = Bound<Timestamp, &'expr PgTimestamp>
type Expression = Bound<Timestamp, &'expr PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Timestamp> for PgTimestamp
impl AsExpression<Timestamp> for PgTimestamp
§type Expression = Bound<Timestamp, PgTimestamp>
type Expression = Bound<Timestamp, PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Timestamptz> for &'expr PgTimestamp
impl<'expr> AsExpression<Timestamptz> for &'expr PgTimestamp
§type Expression = Bound<Timestamptz, &'expr PgTimestamp>
type Expression = Bound<Timestamptz, &'expr PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Timestamptz> for PgTimestamp
impl AsExpression<Timestamptz> for PgTimestamp
§type Expression = Bound<Timestamptz, PgTimestamp>
type Expression = Bound<Timestamptz, PgTimestamp>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl Clone for PgTimestamp
impl Clone for PgTimestamp
source§fn clone(&self) -> PgTimestamp
fn clone(&self) -> PgTimestamp
Returns a copy 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 PgTimestamp
impl Debug for PgTimestamp
source§impl FromSql<Timestamptz, Pg> for PgTimestamp
impl FromSql<Timestamptz, Pg> for PgTimestamp
source§impl Ord for PgTimestamp
impl Ord for PgTimestamp
source§fn cmp(&self, other: &PgTimestamp) -> Ordering
fn cmp(&self, other: &PgTimestamp) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for PgTimestamp
impl PartialEq for PgTimestamp
source§fn eq(&self, other: &PgTimestamp) -> bool
fn eq(&self, other: &PgTimestamp) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PgTimestamp
impl PartialOrd for PgTimestamp
source§fn partial_cmp(&self, other: &PgTimestamp) -> Option<Ordering>
fn partial_cmp(&self, other: &PgTimestamp) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<__ST, __DB> Queryable<__ST, __DB> for PgTimestamp
impl<__ST, __DB> Queryable<__ST, __DB> for PgTimestamp
source§impl<__DB> ToSql<Nullable<Timestamptz>, __DB> for PgTimestamp
impl<__DB> ToSql<Nullable<Timestamptz>, __DB> for PgTimestamp
source§impl ToSql<Timestamptz, Pg> for PgTimestamp
impl ToSql<Timestamptz, Pg> for PgTimestamp
impl Copy for PgTimestamp
impl Eq for PgTimestamp
impl StructuralPartialEq for PgTimestamp
Auto Trait Implementations§
impl Freeze for PgTimestamp
impl RefUnwindSafe for PgTimestamp
impl Send for PgTimestamp
impl Sync for PgTimestamp
impl Unpin for PgTimestamp
impl UnwindSafe for PgTimestamp
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, ST, DB> FromSqlRow<ST, DB> for Twhere
T: Queryable<ST, DB>,
ST: SqlTypeOrSelectable,
DB: Backend,
<T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,
impl<T, ST, DB> FromSqlRow<ST, DB> for Twhere
T: Queryable<ST, DB>,
ST: SqlTypeOrSelectable,
DB: Backend,
<T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,
source§impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
source§const FIELD_COUNT: usize = const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE;
const FIELD_COUNT: usize = const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE;
The number of fields that this type will consume.