[][src]Struct diesel::pg::types::sql_types::Timestamptz

pub struct Timestamptz;

The "timestamp with time zone" SQL type, which PostgreSQL abbreviates to timestamptz.

ToSql impls

FromSql impls

Trait Implementations

impl FromSql<Timestamptz, Pg> for NaiveDateTime
[src]

impl FromSql<Timestamptz, Pg> for DateTime<Utc>
[src]

impl FromSql<Timestamptz, Pg> for PgTimestamp
[src]

impl AsExpression<Timestamptz> for now
[src]

type Expression = Coerce<now, Timestamptz>

The expression being returned

impl<'expr> AsExpression<Timestamptz> for &'expr PgTimestamp
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<Timestamptz> for &'expr2 &'expr PgTimestamp
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl AsExpression<Timestamptz> for PgTimestamp
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl<'expr> AsExpression<Timestamptz> for &'expr NaiveDateTime
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<Timestamptz> for &'expr2 &'expr NaiveDateTime
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl AsExpression<Timestamptz> for NaiveDateTime
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl<'expr, Tz: TimeZone> AsExpression<Timestamptz> for &'expr DateTime<Tz>
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl<'expr2, 'expr, Tz: TimeZone> AsExpression<Timestamptz> for &'expr2 &'expr DateTime<Tz>
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl<Tz: TimeZone> AsExpression<Timestamptz> for DateTime<Tz>
[src]

type Expression = Bound<Timestamptz, Self>

The expression being returned

impl QueryId for Timestamptz
[src]

type QueryId = Timestamptz

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

fn query_id() -> Option<TypeId>
[src]

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

impl ToSql<Timestamptz, Pg> for NaiveDateTime
[src]

impl<TZ: TimeZone> ToSql<Timestamptz, Pg> for DateTime<TZ>
[src]

impl ToSql<Timestamptz, Pg> for PgTimestamp
[src]

impl Add for Timestamptz
[src]

type Rhs = Interval

The SQL type which can be added to this one

type Output = Timestamptz

The SQL type of the result of adding Rhs to Self

impl Sub for Timestamptz
[src]

type Rhs = Interval

The SQL type which can be subtracted from this one

type Output = Timestamptz

The SQL type of the result of subtracting Rhs from Self

impl SqlOrd for Timestamptz
[src]

impl HasSqlType<Timestamptz> for Pg
[src]

impl NotNull for Timestamptz
[src]

impl SingleValue for Timestamptz
[src]

impl Copy for Timestamptz
[src]

impl Default for Timestamptz
[src]

impl Clone for Timestamptz
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Timestamptz
[src]

Auto Trait Implementations

impl Send for Timestamptz

impl Sync for Timestamptz

Blanket Implementations

impl<T> IntoSql for T
[src]

fn into_sql<T>(self) -> AsExprOf<Self, T> where
    Self: AsExpression<T> + Sized
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T> where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more

impl<T> IntoNullable for T where
    T: NotNull
[src]

type Nullable = Nullable<T>

The nullable representation of this type. Read more

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]