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
sourceimpl<'expr> AsExpression<Nullable<Timestamp>> for &'expr PgTimestamp
impl<'expr> AsExpression<Nullable<Timestamp>> for &'expr PgTimestamp
type Expression = Bound<Nullable<Timestamp>, Self>
type Expression = Bound<Nullable<Timestamp>, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl AsExpression<Nullable<Timestamp>> for PgTimestamp
impl AsExpression<Nullable<Timestamp>> for PgTimestamp
type Expression = Bound<Nullable<Timestamp>, Self>
type Expression = Bound<Nullable<Timestamp>, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl<'expr> AsExpression<Nullable<Timestamptz>> for &'expr PgTimestamp
impl<'expr> AsExpression<Nullable<Timestamptz>> for &'expr PgTimestamp
type Expression = Bound<Nullable<Timestamptz>, Self>
type Expression = Bound<Nullable<Timestamptz>, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl AsExpression<Nullable<Timestamptz>> for PgTimestamp
impl AsExpression<Nullable<Timestamptz>> for PgTimestamp
type Expression = Bound<Nullable<Timestamptz>, Self>
type Expression = Bound<Nullable<Timestamptz>, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl<'expr> AsExpression<Timestamp> for &'expr PgTimestamp
impl<'expr> AsExpression<Timestamp> for &'expr PgTimestamp
type Expression = Bound<Timestamp, Self>
type Expression = Bound<Timestamp, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl AsExpression<Timestamp> for PgTimestamp
impl AsExpression<Timestamp> for PgTimestamp
type Expression = Bound<Timestamp, Self>
type Expression = Bound<Timestamp, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl<'expr> AsExpression<Timestamptz> for &'expr PgTimestamp
impl<'expr> AsExpression<Timestamptz> for &'expr PgTimestamp
type Expression = Bound<Timestamptz, Self>
type Expression = Bound<Timestamptz, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl AsExpression<Timestamptz> for PgTimestamp
impl AsExpression<Timestamptz> for PgTimestamp
type Expression = Bound<Timestamptz, Self>
type Expression = Bound<Timestamptz, Self>
The expression being returned
sourcefn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
sourceimpl Clone for PgTimestamp
impl Clone for PgTimestamp
sourcefn clone(&self) -> PgTimestamp
fn clone(&self) -> PgTimestamp
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PgTimestamp
impl Debug for PgTimestamp
sourceimpl FromSql<Timestamp, Pg> for PgTimestamp
impl FromSql<Timestamp, Pg> for PgTimestamp
sourceimpl FromSql<Timestamptz, Pg> for PgTimestamp
impl FromSql<Timestamptz, Pg> for PgTimestamp
sourceimpl<__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>,
sourcefn build_from_row<R: Row<__DB>>(row: &mut R) -> Result<Self>
fn build_from_row<R: Row<__DB>>(row: &mut R) -> Result<Self>
See the trait documentation.
sourceconst FIELDS_NEEDED: usize
const FIELDS_NEEDED: usize
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
sourceimpl Ord for PgTimestamp
impl Ord for PgTimestamp
sourceimpl PartialEq<PgTimestamp> for PgTimestamp
impl PartialEq<PgTimestamp> for PgTimestamp
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &PgTimestamp) -> bool
fn ne(&self, other: &PgTimestamp) -> bool
This method tests for !=
.
sourceimpl PartialOrd<PgTimestamp> for PgTimestamp
impl PartialOrd<PgTimestamp> for PgTimestamp
sourcefn partial_cmp(&self, other: &PgTimestamp) -> Option<Ordering>
fn partial_cmp(&self, other: &PgTimestamp) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl<__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>,
sourceimpl<__DB> ToSql<Nullable<Timestamp>, __DB> for PgTimestamp where
__DB: Backend,
Self: ToSql<Timestamp, __DB>,
impl<__DB> ToSql<Nullable<Timestamp>, __DB> for PgTimestamp where
__DB: Backend,
Self: ToSql<Timestamp, __DB>,
sourceimpl<__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>,
sourceimpl ToSql<Timestamp, Pg> for PgTimestamp
impl ToSql<Timestamp, Pg> for PgTimestamp
sourceimpl ToSql<Timestamptz, Pg> for PgTimestamp
impl ToSql<Timestamptz, Pg> for PgTimestamp
impl Copy for PgTimestamp
impl Eq for PgTimestamp
impl StructuralEq for PgTimestamp
impl StructuralPartialEq for PgTimestamp
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more